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>AXART_SOUND</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">AXART_SOUND</H1> 14 15<H2>Syntax</H2> 16<dl><dd><pre class="construction"> 17#include <revolution.h> 18#include <revolution/axart.h> 19 20typedef struct 21{ 22 void *next; // next sound in list 23 void *prev; // prev sound in list 24 25 AXVPB *axvpb; // user acquired voice 26 f32 sampleRate; // normal sample rate 27 28 AXART_ART *articulators; // list of articulators 29 30} AXART_SOUND; 31</pre></dd></dl> 32 33<h2>Elements</h2> 34<TABLE class="arguments" border="1" > 35 <TR> 36<TH>next</TH> 37<TD>Pointer to the next sound in list. This parameter is maintained by AXART. Do not write to this parameter.</TD> 38 </TR> 39 <TR> 40<TH>prev</TH> 41<TD>Pointer to the previous sound in list. This parameter is maintained by AXART. Do not write to this parameter.</TD> 42 </TR> 43 <TR> 44<TH>axvpb</TH> 45<TD>User-acquired voice associated with the sound. The user application must initialize this data before calling the <CODE>AXARTAddSound</CODE> function for the <CODE>AXART_SOUND</CODE>.</TD> 46 </TR> 47 <TR> 48<TH>sampleRate</TH> 49<TD>Normal sample rate for voice playback. This data must be initialized before calling the <CODE>AXARTAddSound</CODE> function for the <CODE>AXART_SOUND</CODE>. The user application may change this parameter at any time.</TD> 50 </TR> 51 <TR> 52<TH>articulators</TH> 53<TD>List of articulators. This parameter is maintained by AXART. Do not write to this parameter.</TD> 54 </TR> 55</TABLE> 56 57<H2>Description</H2> 58<P><CODE>AXART_SOUND</CODE> is a data structure that denotes a sound in the AXART voice articulator library.</P> 59 60<H2>See Also</H2> 61<P class="reference"> 62<A href="AXARTAddSound.html">AXARTAddSound</A>, <A href="AXARTAddArticulator.html">AXARTAddArticulator</A> 63</P> 64 65<H2>Revision History</H2> 66<P> 672006/03/01 Initial version.<BR> 68</P> 69 70<hr><p>CONFIDENTIAL</p></body> 71</HTML> 72