X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fdummy.c;h=50e0d6529a940a97f067399f653e76b38219f4a4;hb=9eb07d79cfaa5a147a708df832c9c9164be4c312;hp=fa28d207b3553273b322cd4ea5315171c5a85bfb;hpb=4e1d74dd9fa376152dea685917741cee77c0e059;p=pspp diff --git a/src/ui/gui/dummy.c b/src/ui/gui/dummy.c index fa28d207b3..50e0d6529a 100644 --- a/src/ui/gui/dummy.c +++ b/src/ui/gui/dummy.c @@ -24,24 +24,54 @@ #include +#include #include -#include "src/language/stats/chart-category.h" +#include "libpspp/compiler.h" +#include "data/variable.h" + +#include "psppire-data-store.h" +#include "t-test-options.h" +#include "src/language/commands/chart-category.h" +#include "src/language/commands/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 () {} - - -int tt_options_dialog_run () {} - -int agr_func_tab () {} +bool +var_is_numeric (const struct variable *v UNUSED) +{ + assert (0); + return -1; +} + +void +tt_options_dialog_run (struct tt_options_dialog *x UNUSED) +{ + assert (0); +} + +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 FALSE; +}