diff options
author | kraxel <kraxel> | 2006-01-26 16:27:01 +0000 |
---|---|---|
committer | kraxel <kraxel> | 2006-01-26 16:27:01 +0000 |
commit | 8cefbcf1e028004efa70f2f1956fbc9d25c8b372 (patch) | |
tree | 03331d899793e543d06e6e3239bf67981ccae1a1 /mdns.h | |
parent | 2bc71f882724947307fadcf5f3c7cee81191acb2 (diff) | |
download | xenwatch-8cefbcf1e028004efa70f2f1956fbc9d25c8b372.tar.gz |
- more mdns bits.
Diffstat (limited to 'mdns.h')
-rw-r--r-- | mdns.h | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ -int mdns_init(void); -int mdns_browse(const char *service, const char *domain); -void mdns_fini(void); +struct mdns_window; + +struct mdns_window *mdns_create_window(int standalone); +void mdns_show_window(struct mdns_window *mdns); +void mdns_destroy_window(struct mdns_window *mdns); + +int mdns_browse(struct mdns_window *mdns, + const char *service, const char *domain); |