fade.c: replace args_info by conf
[paraslash.git] / afh.h
diff --git a/afh.h b/afh.h
index 38e1ff04c4ad9823456d788b835d11f77952bc86..e0087a56c750355224d0719ee064caf26c237d35 100644 (file)
--- a/afh.h
+++ b/afh.h
@@ -48,7 +48,7 @@ struct audio_format_info {
        /** the number of chunks this audio file contains */
        long unsigned chunks_total;
        /** the length of the audio file in seconds */
-       int seconds_total;
+       long unsigned seconds_total;
        /** a string that gets filled in by the audio format handler */
        char info_string[AUDIO_FILE_INFO_SIZE];
        /**
@@ -112,7 +112,7 @@ struct audio_format_handler {
         *
         * \sa struct audio_format_info
        */
-       int (*get_file_info)(char *map, off_t numbytes,
+       int (*get_file_info)(char *map, size_t numbytes,
                struct audio_format_info *afi);
 };