view libpurple/protocols/bonjour/dns_sd_proxy.h @ 18504:34ed4e7c08cb

Crash fixes from Eric Polino. applied partial changes from 603ef83ff93243a1829fcf4fd69ec911b42d4c6b through 28530bc53fbe271f49ca1baa55938a067f20aed8
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Thu, 12 Jul 2007 03:17:32 +0000
parents d7b50cac1c7a
children db6218615be4
line wrap: on
line source

#ifndef _DNS_SD_PROXY
#define _DNS_SD_PROXY

#include <stdint.h>

/* fixup to make pidgin compile against win32 bonjour */
#ifdef _WIN32
#define _MSL_STDINT_H
#undef bzero
#endif

#include <dns_sd.h>

/* dns_sd.h defines bzero and we also do in libc_internal.h */
#ifdef _WIN32
#undef bzero
#endif

#endif