Commit 103a4343 authored by Richard Levitte's avatar Richard Levitte
Browse files

One forgotten function.

parent 567671e2
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -706,6 +706,14 @@ int (*UI_method_get_writer(UI_METHOD *method))(UI*,UI_STRING*)
		return NULL;
	}

int (*UI_method_get_flusher(UI_METHOD *method))(UI*)
	{
	if (method)
		return method->ui_flush;
	else
		return NULL;
	}

int (*UI_method_get_reader(UI_METHOD *method))(UI*,UI_STRING*)
	{
	if (method)