comparison dvd_input.h @ 18:2a219d444297 src

Comments cleanup: fix spelling and grammar errors. Patch by: Erik Hovland !erik#hovland at org*
author rathann
date Mon, 01 Sep 2008 21:04:33 +0000
parents fdbae45c30fc
children fce16251755c
comparison
equal deleted inserted replaced
17:5aeaa695eadb 18:2a219d444297
28 #define DVDINPUT_READ_DECRYPT (1 << 0) 28 #define DVDINPUT_READ_DECRYPT (1 << 0)
29 29
30 typedef struct dvd_input_s *dvd_input_t; 30 typedef struct dvd_input_s *dvd_input_t;
31 31
32 /** 32 /**
33 * Pointers which will be filled either the input methods functions. 33 * Function pointers that will be filled in by the input implementation.
34 * These functions provide the main API.
34 */ 35 */
35 extern dvd_input_t (*dvdinput_open) (const char *); 36 extern dvd_input_t (*dvdinput_open) (const char *);
36 extern int (*dvdinput_close) (dvd_input_t); 37 extern int (*dvdinput_close) (dvd_input_t);
37 extern int (*dvdinput_seek) (dvd_input_t, int); 38 extern int (*dvdinput_seek) (dvd_input_t, int);
38 extern int (*dvdinput_title) (dvd_input_t, int); 39 extern int (*dvdinput_title) (dvd_input_t, int);