diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-04 18:09:14 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-04-04 18:09:14 +0200 |
commit | 6c684df061a3c09da94834c2d9008eb90811b242 (patch) | |
tree | c34ae59f2fcbeb19d86c170e569ba645921bc5d7 /src/xine-engine/input_rip.c | |
parent | 92647a9d5a2e49de058a1169b465685ac9d9bdcb (diff) | |
download | xine-lib-nopadding_no_abi_change.tar.gz xine-lib-nopadding_no_abi_change.tar.bz2 |
Reorder and pack the structures that are defined inside compilation units instead of headers (and thus are not part of public ABI).nopadding_no_abi_change
Diffstat (limited to 'src/xine-engine/input_rip.c')
-rw-r--r-- | src/xine-engine/input_rip.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/input_rip.c b/src/xine-engine/input_rip.c index d8715fb85..56850ba2d 100644 --- a/src/xine-engine/input_rip.c +++ b/src/xine-engine/input_rip.c @@ -83,12 +83,13 @@ typedef struct { xine_stream_t *stream; FILE *file; /* destination file */ - int regular; /* permit reading from the file */ char *preview; /* preview data */ off_t preview_size; /* size of read preview data */ off_t curpos; /* current position */ off_t savepos; /* amount of already saved data */ + + int regular; /* permit reading from the file */ } rip_input_plugin_t; |