STAGETO=include/${globalprefix}/${lbprefix}
STATIC_H=consumer.h context.h dump.h load.h notification.h notifid.h purge.h \
- Notification.h CountRef.h Job.h LoggingExceptions.h ServerConnection.h
+ Notification.h CountRef.h Job.h LoggingExceptions.h ServerConnection.h \
+ consumer_fake.h
GEN_H=events.h jobstat.h producer.h Event.h JobStatus.h
--- /dev/null
+/* $Id: */
+
+#ifndef WORKLOAD_LOGGING_CLIENT_CONSUMER_FAKE_H
+#define WORKLOAD_LOGGING_CLIENT_CONSUMER_FAKE_H
+
+#include "glite/lb/context-int.h"
+
+typedef int (edg_wll_QueryEvents_cb_f)(edg_wll_Context context, edg_wll_Event **events);
+typedef int (edg_wll_QueryListener_cb_f)(edg_wll_Context context, char **host, uint16_t *port);
+
+int egd_wll_RegisterTestQueryEvents(edg_wll_QueryEvents_cb_f *cb);
+int egd_wll_RegisterTestQueryListener(edg_wll_QueryListener_cb_f *cb);
+void egd_wll_UnregisterTestQueryEvents();
+void egd_wll_UnregisterTestQueryListener();
+
+#endif /* WORKLOAD_LOGGING_CLIENT_CONSUMER_FAKE_H */