diff options
author | Max Kellermann <max@duempel.org> | 2008-09-29 15:49:29 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-29 15:49:29 +0200 |
commit | 226d52b36fe648215f367d352ad6e5eb38e116be (patch) | |
tree | a8dc789a0f3585b07da36f952a69ff554a1bf999 /src/playlist.h | |
parent | 0352766dca3da5266e4714124fea119be82c4188 (diff) | |
download | mpd-226d52b36fe648215f367d352ad6e5eb38e116be.tar.gz mpd-226d52b36fe648215f367d352ad6e5eb38e116be.tar.xz mpd-226d52b36fe648215f367d352ad6e5eb38e116be.zip |
switch to C99 types, part II
Do full C99 integer type conversion in all modules which were not
touched by Eric's merged patch.
Diffstat (limited to '')
-rw-r--r-- | src/playlist.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/playlist.h b/src/playlist.h index 8d964aabd..acc44aca6 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -39,7 +39,7 @@ enum playlist_result { typedef struct _Playlist { Song **songs; /* holds version a song was modified on */ - mpd_uint32 *songMod; + uint32_t *songMod; int *order; int *positionToId; int *idToPosition; @@ -48,7 +48,7 @@ typedef struct _Playlist { int queued; int repeat; int random; - mpd_uint32 version; + uint32_t version; } Playlist; extern int playlist_saveAbsolutePaths; @@ -137,9 +137,9 @@ enum playlist_result seekSongInPlaylistById(int id, float seek_time); void playlistVersionChange(void); -int playlistChanges(struct client *client, mpd_uint32 version); +int playlistChanges(struct client *client, uint32_t version); -int playlistChangesPosId(struct client *client, mpd_uint32 version); +int playlistChangesPosId(struct client *client, uint32_t version); int PlaylistInfo(struct client *client, const char *utf8file, int detail); |