X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fui%2Fgui%2Fdummy.c;h=50e0d6529a940a97f067399f653e76b38219f4a4;hb=9eb07d79cfaa5a147a708df832c9c9164be4c312;hp=f103b7d4e44491fada59887f75f43eea7d0f042d;hpb=d9a8216021edbb6b94dce664a5cda991f8d34ea0;p=pspp diff --git a/src/ui/gui/dummy.c b/src/ui/gui/dummy.c index f103b7d4e4..50e0d6529a 100644 --- a/src/ui/gui/dummy.c +++ b/src/ui/gui/dummy.c @@ -28,38 +28,50 @@ #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 (void); -int tt_options_dialog_run (void); -int agr_func_tab (void); - -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 -1; + return NULL; +} + +gboolean +psppire_data_store_string_to_value (GtkTreeModel *model, gint col, gint row, + const gchar *in, GValue *out) +{ + assert (0); + return FALSE; }