X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fsys-file-writer.h;h=127715b4dcaf0722af58b76887dff0e498df8a59;hb=c972eebe3286130ba9af8b0520a35a42a8d5ef75;hp=c6128d45677009a5cff5cff45e249a5cd53c658f;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp diff --git a/src/data/sys-file-writer.h b/src/data/sys-file-writer.h index c6128d4567..127715b4dc 100644 --- a/src/data/sys-file-writer.h +++ b/src/data/sys-file-writer.h @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 1997-9, 2000 Free Software Foundation, Inc. + Copyright (C) 1997-9, 2000, 2009, 2013, 2014 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,20 +18,20 @@ #define SFM_WRITE_H 1 #include +#include "any-reader.h" /* Writing system files. */ /* Options for creating a system file. */ struct sfm_write_options { + enum any_compression compression; bool create_writeable; /* File perms: writeable or read/only? */ - bool compress; /* Compress file? */ int version; /* System file version (currently 2 or 3). */ }; struct file_handle; struct dictionary; -struct ccase; struct casewriter *sfm_open_writer (struct file_handle *, struct dictionary *, struct sfm_write_options); struct sfm_write_options sfm_writer_default_options (void);