Microsoft DirectX 8.1 (C++) |
The ComposeTemplateFromShape method creates a new
Syntax
HRESULT ComposeTemplateFromShape(
WORD wNumMeasures,
WORD wShape,
BOOL fIntro,
BOOL fEnd,
WORD wEndLength,
IDirectMusicSegment** ppTemplate
);
Parameters
wNumMeasures
Length, in measures, of the segment to be composed. This value must be greater than 0.
wShape
Shape of the segment to be composed. Possible values are of the DMUS_SHAPET_TYPES enumerated type.
fIntro
TRUE if an introduction is to be composed for the segment.
fEnd
TRUE if an ending is to be composed for the segment.
wEndLength
Length in measures of the ending, if one is to be composed. If fEnd is TRUE, this value must be greater than 0 and equal to or less than the number of measures available (that is, not used in the introduction). See also Remarks.
ppTemplate
Address of a variable that receives a pointer to the created template segment.
Return Values
If the method succeeds, the return value is S_OK.
If it fails, the method can return one of the error values shown in the following table.
Return code |
E_INVALIDARG |
E_OUTOFMEMORY |
E_POINTER |
Remarks
The value of wEndLength should not be greater than the length of the longest ending available in any
Requirements
Header: Declared in dmusici.h.
See Also