X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fdummy.c;h=96586d6b02ac0aee7e20235900fd7a16cc89e378;hb=5816109430eb4b71652de09cfdc2df2bc5c44655;hp=e8ee492dc684110499a625782ffec134ccd0ce82;hpb=c3a92aa6d6536a82f4f50da5af0d1c76eb6f2709;p=pspp diff --git a/src/ui/gui/dummy.c b/src/ui/gui/dummy.c index e8ee492dc6..96586d6b02 100644 --- a/src/ui/gui/dummy.c +++ b/src/ui/gui/dummy.c @@ -28,34 +28,50 @@ #include +#include "libpspp/compiler.h" +#include "data/variable.h" + +#include "psppire-data-store.h" +#include "t-test-options.h" #include "src/language/stats/chart-category.h" +#include "src/language/stats/aggregate.h" const GEnumValue align[1]; const GEnumValue measure[1]; const GEnumValue role[1]; -const int N_AG_FUNCS = 0; -const struct ag_func ag_func[1]; - -int F_8_0; - -int -var_is_numeric () +bool +var_is_numeric (const struct variable *v UNUSED) { assert (0); return -1; } -int -tt_options_dialog_run () +void +tt_options_dialog_run (struct tt_options_dialog *x UNUSED) { assert (0); - return -1; } -int -agr_func_tab () +const struct agr_func agr_func_tab[] = + { + }; + +const struct ag_func ag_func[] = {}; +const int N_AG_FUNCS = 1; + + +gchar * +psppire_data_store_value_to_string (gpointer unused, PsppireDataStore *store, gint col, gint row, const GValue *v) +{ + assert (0); + return NULL; +} + +gboolean +psppire_data_store_string_to_value (GtkTreeModel *model, gint col, gint row, + const gchar *in, GValue *out) { assert (0); - return -1; + return FALSE; }