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
|
--- src/fusionsound.c.old 2009-01-16 14:28:27.000000000 +0100
+++ src/fusionsound.c 2009-01-16 14:33:34.000000000 +0100
@@ -116,7 +116,7 @@
return fs_config_set( name, value );
}
-DirectResult
+DFBResult
FusionSoundCreate( IFusionSound **ret_interface )
{
DFBResult ret;
@@ -160,8 +160,8 @@
return ret;
}
-DirectResult
-FusionSoundError( const char *msg, DirectResult error )
+DFBResult
+FusionSoundError( const char *msg, DFBResult error )
{
if (msg)
fprintf( stderr, "(#) FusionSound Error [%s]: %s\n", msg, DirectResultString( error ) );
@@ -172,7 +172,7 @@
}
DFBResult
-FusionSoundErrorFatal( const char *msg, DirectResult error )
+FusionSoundErrorFatal( const char *msg, DFBResult error )
{
FusionSoundError( msg, error );
@@ -180,7 +180,7 @@
}
const char *
-FusionSoundErrorString( DirectResult error )
+FusionSoundErrorString( DFBResult error )
{
return DirectResultString( error );
}
|