X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fsys-file-reader.h;h=92a304829ca827b12dca5fb7bf8989cffa723ad3;hb=378ff5f35086629f4656c5e46934d1ec51ec00ca;hp=68e6e84ec54497f95a68818187c11f8a5de84fd1;hpb=dcf9b154cbcaa35c3d8459a201b77eec8bcb30bd;p=pspp diff --git a/src/data/sys-file-reader.h b/src/data/sys-file-reader.h index 68e6e84ec5..92a304829c 100644 --- a/src/data/sys-file-reader.h +++ b/src/data/sys-file-reader.h @@ -23,6 +23,9 @@ #include #include +#include +#include + /* Reading system files. */ /* System file info that doesn't fit in struct dictionary. */ @@ -30,8 +33,9 @@ struct sfm_read_info { char creation_date[10]; /* `dd mmm yy' plus a null. */ char creation_time[9]; /* `hh:mm:ss' plus a null. */ - int big_endian; /* 1=big-endian, 0=little-endian. */ - int compressed; /* 0=no, 1=yes. */ + enum integer_format integer_format; + enum float_format float_format; + bool compressed; /* 0=no, 1=yes. */ int case_cnt; /* -1 if unknown. */ char product[61]; /* Product name plus a null. */ };