Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
28008e69
Commit
28008e69
authored
Jan 26, 2008
by
Max Kellermann
Committed by
Eric Wong
Jan 26, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed invalid C prototypes
Signed-off-by:
Eric Wong
<
normalperson@yhbt.net
>
git-svn-id:
https://svn.musicpd.org/mpd/trunk@7142
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
7d668592
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
8 deletions
+8
-8
audioOutput.h
src/audioOutput.h
+1
-1
audioOutput_fifo.c
src/audioOutputs/audioOutput_fifo.c
+1
-1
directory.c
src/directory.c
+1
-1
inputPlugin.h
src/inputPlugin.h
+2
-2
drms.c
src/mp4ff/drms.c
+1
-1
drms.h
src/mp4ff/drms.h
+1
-1
tagTracker.h
src/tagTracker.h
+1
-1
No files found.
src/audioOutput.h
View file @
28008e69
...
...
@@ -33,7 +33,7 @@
typedef
struct
_AudioOutput
AudioOutput
;
typedef
int
(
*
AudioOutputTestDefaultDeviceFunc
)
();
typedef
int
(
*
AudioOutputTestDefaultDeviceFunc
)
(
void
);
typedef
int
(
*
AudioOutputInitDriverFunc
)
(
AudioOutput
*
audioOutput
,
ConfigParam
*
param
);
...
...
src/audioOutputs/audioOutput_fifo.c
View file @
28008e69
...
...
@@ -36,7 +36,7 @@ typedef struct _FifoData {
Timer
*
timer
;
}
FifoData
;
static
FifoData
*
newFifoData
()
static
FifoData
*
newFifoData
(
void
)
{
FifoData
*
ret
;
...
...
src/directory.c
View file @
28008e69
...
...
@@ -64,7 +64,7 @@ static volatile int directory_reReadDB;
static
volatile
mpd_uint16
directory_updateJobId
;
static
DirectoryList
*
newDirectoryList
();
static
DirectoryList
*
newDirectoryList
(
void
);
static
int
addToDirectory
(
Directory
*
directory
,
char
*
shortname
,
char
*
name
);
...
...
src/inputPlugin.h
View file @
28008e69
...
...
@@ -31,10 +31,10 @@
/* optional, set this to NULL if the InputPlugin doesn't have/need one
* this must return < 0 if there is an error and >= 0 otherwise */
typedef
int
(
*
InputPlugin_initFunc
)
();
typedef
int
(
*
InputPlugin_initFunc
)
(
void
);
/* optional, set this to NULL if the InputPlugin doesn't have/need one */
typedef
void
(
*
InputPlugin_finishFunc
)
();
typedef
void
(
*
InputPlugin_finishFunc
)
(
void
);
/* boolean return value, returns 1 if the InputStream is decodable by
* the InputPlugin, 0 if not */
...
...
src/mp4ff/drms.c
View file @
28008e69
...
...
@@ -871,7 +871,7 @@ struct drms_s
#define P_DRMS ((struct drms_s *)p_drms)
void
*
drms_alloc
()
void
*
drms_alloc
(
void
)
{
struct
drms_s
*
p_drms
;
...
...
src/mp4ff/drms.h
View file @
28008e69
...
...
@@ -31,7 +31,7 @@ extern int drms_get_sys_key( uint32_t *p_sys_key );
extern
int
drms_get_user_key
(
uint32_t
*
p_sys_key
,
uint32_t
*
p_user_key
);
extern
void
*
drms_alloc
();
extern
void
*
drms_alloc
(
void
);
extern
void
drms_free
(
void
*
p_drms
);
extern
int
drms_init
(
void
*
p_drms
,
uint32_t
i_type
,
uint8_t
*
p_info
,
uint32_t
i_len
);
...
...
src/tagTracker.h
View file @
28008e69
...
...
@@ -27,7 +27,7 @@ void removeTagItemString(int type, char *string);
int
getNumberOfTagItems
(
int
type
);
void
printMemorySavedByTagTracker
();
void
printMemorySavedByTagTracker
(
void
);
void
resetVisitedFlagsInTagTracker
(
int
type
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment