Skip to content

Commit 8571046

Browse files
committed
Minor documentation improvements
1 parent aa51612 commit 8571046

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

vst.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2309,15 +2309,15 @@ enum VST_EFFECT_OPCODE {
23092309

23102310
/** Host wants to change the speaker arrangement.
23112311
*
2312+
* @sa vst_effect_t.num_inputs
2313+
* @sa vst_effect_t.num_outputs
2314+
* @sa VST_EFFECT_OPCODE_GET_SPEAKER_ARRANGEMENT
23122315
* @note (VST 2.0+) Available from VST 2.0 onwards.
2313-
* @param p_int2 Pointer to a @ref vst_speaker_arrangement_t for the input.
2314-
* @param p_ptr Pointer to a @ref vst_speaker_arrangement_t for the output.
2316+
* @param p_int2 Pointer to a @ref vst_speaker_arrangement_t structure.
2317+
* @param p_ptr Pointer to a @ref vst_speaker_arrangement_t structure.
23152318
* @return @ref VST_STATUS_TRUE if we accept the new arrangement, @ref VST_STATUS_FALSE if we don't in which case
23162319
* the host is required to ask for the speaker arrangement via @ref VST_EFFECT_OPCODE_GET_SPEAKER_ARRANGEMENT
23172320
* and may retry this op-code with different values.
2318-
* @sa vst_effect_t.num_inputs
2319-
* @sa vst_effect_t.num_outputs
2320-
* @sa VST_EFFECT_OPCODE_GET_SPEAKER_ARRANGEMENT
23212321
*/
23222322
VST_EFFECT_OPCODE_2A = 0x2A,
23232323
/** @sa VST_EFFECT_OPCODE_2A */
@@ -2596,8 +2596,8 @@ enum VST_EFFECT_OPCODE {
25962596
/** Host wants to know the current speaker arrangement.
25972597
*
25982598
* @note (VST 2.3+) Available from VST 2.3 onwards.
2599-
* @param p_int2 Pointer to @ref vst_speaker_arrangement_t for the input.
2600-
* @param p_ptr Pointer to @ref vst_speaker_arrangement_t for the output.
2599+
* @param p_int2 Pointer to a @ref vst_speaker_arrangement_t pointer.
2600+
* @param p_ptr Pointer to a @ref vst_speaker_arrangement_t pointer.
26012601
* @return @ref VST_STATUS_TRUE if we were successful, otherwise @ref VST_STATUS_FALSE.
26022602
*/
26032603
VST_EFFECT_OPCODE_45 = 0x45,

0 commit comments

Comments
 (0)