Changed a few instances of SHORT_NAME_LEN to LONG_NAME_LEN
[pspp-builds.git] / src / vfmP.h
index eb52f0ed9697a726462cdd17c348863a5c839175..86140401f93ce3619967a7f590ccb6bae2d9b5c5 100644 (file)
 
 #include "var.h"
 
-/* Describes a data stream, either a source or a sink. */
-struct stream_info
-  {
-    int case_size;             /* Size of one case in bytes. */
-    int ncases;                        /* Number of cases. */
-    int nval;                  /* Number of `value' elements per case. */
-  };
-
-/* Information about the data source. */
-extern struct stream_info vfm_source_info;
-
-/* Information about the data sink. */
-extern struct stream_info vfm_sink_info;
-
-/* Nonzero if the case needs to have values deleted before being
-   stored, zero otherwise. */
-extern int compaction_necessary;
-
-/* Number of values after compaction, or the same as
-   vfm_sink_info.nval, if compaction is not necessary. */
-extern int compaction_nval;
-
-/* Temporary case buffer with enough room for `compaction_nval'
-   `value's. */
-extern struct ccase *compaction_case;
-
-void compact_case (struct ccase *dest, const struct ccase *src);
-
 #endif /* !vfmP_h */