Mercurial > audlegacy
changeset 1738:f157e22c70c4 trunk
[svn] - C++ friendliness
author | nenolod |
---|---|
date | Mon, 18 Sep 2006 01:59:07 -0700 |
parents | 73f4c2c89c23 |
children | 5573c40b3fb2 |
files | ChangeLog audacious/playlist.h audacious/playlist_container.h |
diffstat | 3 files changed, 16 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Sep 18 01:58:20 2006 -0700 +++ b/ChangeLog Mon Sep 18 01:59:07 2006 -0700 @@ -1,3 +1,12 @@ +2006-09-18 08:58:20 +0000 William Pitcock <nenolod@nenolod.net> + revision [2411] + - lets be C++ friendly + + + Changes: Modified: + +1 -2 trunk/audacious/util.h + + 2006-09-18 08:56:09 +0000 William Pitcock <nenolod@nenolod.net> revision [2409] - use audacious/titlestring.h instead of libaudacious/titlestring.h
--- a/audacious/playlist.h Mon Sep 18 01:58:20 2006 -0700 +++ b/audacious/playlist.h Mon Sep 18 01:59:07 2006 -0700 @@ -28,6 +28,8 @@ #include "audacious/titlestring.h" #include "input.h" +G_BEGIN_DECLS + typedef enum { PLAYLIST_SORT_PATH, PLAYLIST_SORT_FILENAME, @@ -179,5 +181,6 @@ const gchar * playlist_name, gint pos, TitleInput *tuple); +G_END_DECLS #endif
--- a/audacious/playlist_container.h Mon Sep 18 01:58:20 2006 -0700 +++ b/audacious/playlist_container.h Mon Sep 18 01:59:07 2006 -0700 @@ -21,6 +21,8 @@ #ifndef _PLAYLIST_CONTAINER_H_ #define _PLAYLIST_CONTAINER_H_ +G_BEGIN_DECLS + struct _PlaylistContainer { char *name; /* human-readable name */ char *ext; /* extension */ @@ -38,4 +40,6 @@ extern void playlist_container_write(char *filename, gint pos); extern PlaylistContainer *playlist_container_find(char *ext); +G_END_DECLS + #endif