File: test-utils.h

package info (click to toggle)
dbus 0.23.4-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 7,112 kB
  • ctags: 4,832
  • sloc: ansic: 58,374; sh: 8,603; xml: 7,376; cs: 3,348; cpp: 1,043; makefile: 767; python: 523; java: 15
file content (20 lines) | stat: -rw-r--r-- 748 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef TEST_UTILS_H
#define TEST_UTILS_H
#include <config.h>
#define DBUS_COMPILATION /* Cheat and use private stuff */
#include <dbus/dbus.h>
#include <stdio.h>
#include <stdlib.h>
#include <dbus/dbus-mainloop.h>
#include <dbus/dbus-internals.h>
#undef DBUS_COMPILATION

dbus_bool_t test_connection_setup                 (DBusLoop       *loop,
                                                   DBusConnection *connection);
void        test_connection_shutdown              (DBusLoop       *loop,
                                                   DBusConnection *connection);
void        test_connection_dispatch_all_messages (DBusConnection *connection);
dbus_bool_t test_connection_dispatch_one_message  (DBusConnection *connection);


#endif