File: MusicInterface.cpp

package info (click to toggle)
libtuxcap 1.4.0.dfsg2-2.1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,176 kB
  • sloc: cpp: 43,203; ansic: 3,095; python: 774; objc: 242; makefile: 100; xml: 87
file content (91 lines) | stat: -rw-r--r-- 1,336 bytes parent folder | download | duplicates (3)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include "MusicInterface.h"
#include "SexyAppBase.h"

using namespace Sexy;

MusicInterface::MusicInterface()
{		
}

MusicInterface::~MusicInterface()
{
}

bool MusicInterface::LoadMusic(int theSongId, const std::string& theFileName)
{
	return false;
}

void MusicInterface::PlayMusic(int theSongId, int theOffset, bool noLoop)	
{
}

void MusicInterface::StopMusic(int theSongId)
{
}

void MusicInterface::PauseMusic(int theSongId)
{
}

void MusicInterface::ResumeMusic(int theSongId)
{
}

void MusicInterface::StopAllMusic()		
{
}

void MusicInterface::UnloadMusic(int theSongId)
{
}

void MusicInterface::UnloadAllMusic()
{
}

void MusicInterface::PauseAllMusic()
{
}

void MusicInterface::ResumeAllMusic()
{
}

void MusicInterface::FadeIn(int theSongId, int theOffset, double theSpeed, bool noLoop)
{
}

void MusicInterface::FadeOut(int theSongId, bool stopSong, double theSpeed)
{
}

void MusicInterface::FadeOutAll(bool stopSong, double theSpeed)
{
}

void MusicInterface::SetSongVolume(int theSongId, double theVolume)
{
}

void MusicInterface::SetSongMaxVolume(int theSongId, double theMaxVolume)
{
}

bool MusicInterface::IsPlaying(int theSongId)
{
	return false;
}

void MusicInterface::SetVolume(double theVolume)
{
}

void MusicInterface::SetMusicAmplify(int theSongId, double theAmp)
{
}

void MusicInterface::Update()
{
}