pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] Changes to pspp/src/sfm-write.h


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/sfm-write.h
Date: Sun, 21 Aug 2005 03:21:10 -0400

Index: pspp/src/sfm-write.h
diff -u pspp/src/sfm-write.h:1.4 pspp/src/sfm-write.h:1.5
--- pspp/src/sfm-write.h:1.4    Mon May  2 06:21:20 2005
+++ pspp/src/sfm-write.h        Sun Aug 21 07:21:06 2005
@@ -20,13 +20,24 @@
 #ifndef SFM_WRITE_H
 #define SFM_WRITE_H 1
 
+#include <stdbool.h>
+
 /* Writing system files. */
 
+/* Options for creating a system file. */
+struct sfm_write_options 
+  {
+    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 sfm_writer *sfm_open_writer (struct file_handle *, struct dictionary *, 
-                                   int compress, short omit_longnames);
+struct sfm_writer *sfm_open_writer (struct file_handle *, struct dictionary *,
+                                    struct sfm_write_options);
+struct sfm_write_options sfm_writer_default_options (void);
 
 int sfm_write_case (struct sfm_writer *, struct ccase *);
 void sfm_close_writer (struct sfm_writer *);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]