comparison metadata.h @ 23689:3f0d00abc073

Do not use leading underscores in multiple inclusion guards, they are reserved.
author diego
date Mon, 02 Jul 2007 22:34:45 +0000
parents 13599373bb02
children 4129c8cfa742
comparison
equal deleted inserted replaced
23688:3454aed9d083 23689:3f0d00abc073
15 * You should have received a copy of the GNU General Public License 15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation, 16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */ 18 */
19 19
20 #ifndef _METADATA_H_ 20 #ifndef METADATA_H
21 #define _METADATA_H_ 21 #define METADATA_H
22 22
23 typedef enum metadata_s metadata_t; 23 typedef enum metadata_s metadata_t;
24 enum metadata_s { 24 enum metadata_s {
25 /* common info */ 25 /* common info */
26 META_NAME = 0, 26 META_NAME = 0,
45 META_INFO_GENRE 45 META_INFO_GENRE
46 }; 46 };
47 47
48 char *get_metadata (metadata_t type); 48 char *get_metadata (metadata_t type);
49 49
50 #endif /* _METADATA_H_ */ 50 #endif /* METADATA_H */
51 51