blob: 57d62c8dd9a55a6284c67cf63ab948f4442c89bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
$NetBSD: patch-ah,v 1.1.1.1 2001/06/17 19:13:52 drochner Exp $
--- mpeg3/ifo.h.orig Sat Jun 16 14:41:28 2001
+++ mpeg3/ifo.h Sat Jun 16 14:42:10 2001
@@ -206,7 +206,7 @@
u_char *data[10];
int fd; // file descriptor
- __off64_t pos; // offset of ifo file on device
+ off_t pos; // offset of ifo file on device
} ifo_t;
@@ -234,7 +234,7 @@
* Prototypes
*/
-ifo_t *ifoOpen (int fd, __off64_t pos);
+ifo_t *ifoOpen (int fd, off_t pos);
int ifoClose (ifo_t *ifo);
u_int ifoGetVOBStart (ifo_t *ifo);
|