summaryrefslogtreecommitdiffstats
path: root/media-libs/libid3tag/files/0.15.1b/libid3tag-0.15.1b-64bit-long.patch
blob: 852d9efd69b207c15c0617abeb085f4e1f4a4777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- id3tag.h.orig	2004-01-23 18:22:46.000000000 -0500
+++ id3tag.h	2008-05-04 19:46:33.000000000 -0400
@@ -25,6 +25,8 @@
 # ifndef LIBID3TAG_ID3TAG_H
 # define LIBID3TAG_ID3TAG_H
 
+#include <stdint.h>
+
 # ifdef __cplusplus
 extern "C" {
 # endif
@@ -36,10 +38,10 @@
 typedef unsigned char id3_byte_t;
 typedef unsigned long id3_length_t;
 
-typedef unsigned long id3_ucs4_t;
+typedef uint32_t id3_ucs4_t;
 
 typedef unsigned char id3_latin1_t;
-typedef unsigned short id3_utf16_t;
+typedef uint16_t id3_utf16_t;
 typedef signed char id3_utf8_t;
 
 struct id3_tag {