diff options
author | Trent Lloyd <lathiat@bur.st> | 2005-06-04 19:32:26 +0000 |
---|---|---|
committer | Trent Lloyd <lathiat@bur.st> | 2005-06-04 19:32:26 +0000 |
commit | 64dff8088b43bd2f367f35e18bf02e73c8052dec (patch) | |
tree | 563672936e396c4897ded72ca2c51dfb2345bcf3 /avahi-client/client-test.c | |
parent | 781b79d165e9997dc026d90ee9ea2dbc32252f39 (diff) |
* Add some use documentation to the daemon
* Create the structure for avahi-client
* Start building avahi-client and daemon by default
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@100 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-client/client-test.c')
-rw-r--r-- | avahi-client/client-test.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/avahi-client/client-test.c b/avahi-client/client-test.c new file mode 100644 index 0000000..72a8e65 --- /dev/null +++ b/avahi-client/client-test.c @@ -0,0 +1,11 @@ +#include <avahi-client/client.h> + +int +main (int argc, char *argv[]) +{ + AvahiClient *avahi; + + avahi = avahi_client_new (); + + g_message ("Got server ID %d", avahi->serverid); +} |