1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2<html> 3 4<head> 5<LINK rel="stylesheet" type="text/css" href="../../CSS/revolution.css"> 6<title>SEQSetTempo</title> 7<META http-equiv="Content-Type" content="text/html; charset=windows-1252"> 8<META http-equiv="Content-Style-Type" content="text/css"> 9</head> 10 11<body> 12 13<h1 align="left">SEQSetTempo</h1> 14 15<h2>Syntax</h2> 16<dl><dd><pre class="construction"> 17#include <revolution.h> 18#include <revolution/seq.h> 19 20#define SEQ_ALL_TRACKS 0xFFFFFFFF 21 22void SEQSetTempo(SEQSEQUENCE *sequence, u32 track, f32 tempo); 23</pre></dd></dl> 24 25<h2>Arguments</h2> 26<TABLE class="arguments" border="1" > 27 <tr> 28<th>sequence</th> 29<td>Pointer to a user-initialized <CODE>SEQSEQUENCE</CODE></td> 30 </tr> 31 <tr> 32<th>track</th> 33<td>Track index for the track for which the tempo is set Use <CODE>SEQ_ALL_TRACKS</CODE> to set all tracks.</td> 34 </tr> 35 <tr> 36<th>tempo</th> 37<td>Tempo at which to set the sequence, in beats per minute (120.0f = 120 BPM)</td> 38 </tr> 39</table> 40 41<h2>Return Values</h2> 42<p>None.</p> 43 44<h2>Description</h2> 45<p><CODE>SEQSetTempo</CODE> alters playback speed using a logical musical tempo.</p> 46 47<h2>See Also</h2> 48<p class="reference"> 49<a href="SEQGetTempo.html">SEQGetTempo</a> 50</p> 51 52<h2>Revision History</h2> 53<P> 542006/03/01 Initial version.<BR> 55</P> 56 57<hr><p>CONFIDENTIAL</p></body> 58</html> 59