MusHandlePause.html
2.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<html>
<head>
<title>NINTENDO64 Sound Tools Programing Manual</title>
</head>
<body bgcolor="#d0d0d0" text="#000000" link="#008000" vlink="#008000">
<h1><font color="#000080">MusHandlePause()</font></h1>
<h2><font color="#ff0000">$B%W%m%H%?%$%W@k8@(B</font></h2>
<pre> int <strong>MusHandlePause</strong>(musHandle <font color="#0000ff">handle</font>);</pre>
<h2><font color="#ff0000">$B0z?t(B</font></h2>
<table>
<tr>
<td valign="top">
<font color="#0000ff"><code>handle</code></font>
</td>
<td>
$B%5%&%s%I%O%s%I%k(B
</td>
</tr>
</table>
<h2><font color="#ff0000">$B@bL@(B</font></h2>
<p>$B;XDj$7$?%5%&%s%I%O%s%I%k$N=hM}$r0l;~Dd;_$7!"BP1~$9$k3F%A%c%s%M%k$N2;$r;_$a$^$9!#<!$K%W%l%$%d!<$,%"%C%W%G!<%H$5$l$k$H$-(B($B%_%e!<%8%C%/%W%l%$%d!<$N%9%l%C%I$K@Z$jBX$o$C$?$H$-(B)$B$K%\%j%e!<%`%l%Y%k$r(B0$B$K$7$^$9!#(B</p>
<p>$B0l;~Dd;_!":F3+$N=hM}$G2;@<$K1F6A$r$*$h$\$9$3$H$,$"$j$^$9!#M}M3$O!"=hM}$O0l;~CfCG$5$l$^$9$,!"$=$N;~E@$G;H$o$l$F$$$?%5%s%W%k$O=*N;$9$k$^$GLD$k$+%k!<%W$7$F$$$^$9!#=hM}$,:F3+$5$l$k$H$-!"%5%s%W%k$K$h$C$F$O;C$/L52;$G$"$k>l9g$,$"$j$^$9!#$3$l$O!"%5%s%W%k:F@8$,Dd;_Cf$bB3$$$F$$$k$+$i$G$9!#(B</p>
<p>$B$3$N4X?t$O(BFIFO$B%P%C%U%!$K$h$C$F%W%l%$%d!<$K0l;~Dd;_%3%^%s%I$rEO$7$^$9!#(BFIFO$B%P%C%U%!$K%9%Z!<%9$,$J$$>l9g!"$3$N%3%^%s%I$O<B9T$5$l$^$;$s!#%W%l%$%d!<$,%5%&%s%I%G!<%?$r=hM}$9$k$H$-!"(BFIFO$B%P%C%U%!$O6u$N>uBV$G$9!#(B</p>
<p>$B0z?t(B<font color="#0000ff"><code>handle</code></font>$B$O(B<a href="MusStartSong.html"><code>MusStartSong()</code></a>$B!"(B <a href="MusStartSongFromMarker.html"><code>MusStartSongFromMarker()</code></a>$B!"(B <a href="MusStartEffect.html"><code>MusStartEffect()</code></a>$B$"$k$$$O(B<a href="MusStartEffect2.html"><code>MusStartEffect2()</code></a>$B$K$h$C$FJV$5$l$k%5%&%s%I%O%s%I%k$G$J$1$l$P$J$j$^$;$s!#$b$7(B<font color="#0000ff"><code>handle</code></font>$B$H$7$F(B0$B$,M?$($i$l$?$J$i!"$3$N4X?t$O>o$K(B0$B$rJV$7$^$9!#(B</p>
<h2><font color="#ff0000">$BLa$jCM(B</font></h2>
<p>$B$b$7%3%^%s%I$,L5;k$5$l$l$P(B0$B!#$=$&$G$J$1$l$P(B0$B0J30!#(B</p>
<h2><font color="#ff0000">$BNc(B</font></h2>
<pre> void PauseSong(musHandle handle)
{
int i;
for (i=0x80; i!=0; i-=0x20)
{
WaitForVsync();
<a href="MusHandleSetVolume.html">MusHandleSetVolume</a>(handle, i);
}
while (<strong>MusHandlePause</strong>(handle)==0)
WaitForVsync();
}
</pre>
<h2><font color="#ff0000">$B;2>H(B</font></h2>
<a href="MusHandleUnPause.html"><code>MusHandleUnPause()</code></a>,
<a href="MusStartSong.html"><code>MusStartSong()</code></a>,
<a href="MusStartEffect.html"><code>MusStartEffect()</code></a>,
<a href="MusStartEffect2.html"><code>MusStartEffect2()</code></a>
</body>
</html>