blob: 5edb83d873a891ed2d065bb5e5792983d049e521 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- src/cdtrack.h Sat Oct 18 14:51:26 2003
+++ src/cdtrack.h Sun Dec 12 18:40:09 2004
@@ -5,7 +5,7 @@
#include <string>
-#include <linux/cdrom.h>
+#include <sys/cdio.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/stat.h>
@@ -15,7 +15,7 @@
class cdtrack : public track {
private:
int length, number;
- struct cdrom_tocentry toc;
+ struct ioc_read_toc_single_entry toc;
string title;
bool paused;
|