comparison src/madplug/xing.h @ 2495:1505a1e40090

Use glib types.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 31 Mar 2008 12:57:49 +0300
parents 862190d39e00
children f1b6f1b2cdb3
comparison
equal deleted inserted replaced
2491:b419d8924c0b 2495:1505a1e40090
18 */ 18 */
19 19
20 #ifndef XING_H 20 #ifndef XING_H
21 #define XING_H 21 #define XING_H
22 22
23 #include "mad.h" 23 #include <glib.h>
24 24
25 struct xing 25 struct xing
26 { 26 {
27 long flags; /* valid fields (see below) */ 27 guint flags; /* valid fields (see below) */
28 unsigned long frames; /* total number of frames */ 28 guint frames; /* total number of frames */
29 unsigned long bytes; /* total number of bytes */ 29 guint bytes; /* total number of bytes */
30 unsigned char toc[100]; /* 100-point seek table */ 30 guchar toc[100]; /* 100-point seek table */
31 long scale; /* ?? */ 31 gulong scale; /* ?? */
32 }; 32 };
33 33
34 enum 34 enum
35 { 35 {
36 XING_FRAMES = 0x00000001L, 36 XING_FRAMES = 0x00000001L,