dnsapi: Declare some items static.

oldstable
Andrew Talbot 2007-01-06 19:30:51 +00:00 committed by Alexandre Julliard
parent 7f0b93eabc
commit 906c0cac17
2 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(dnsapi);
HINSTANCE hdnsapi;
static HINSTANCE hdnsapi;
BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
{

View File

@ -54,7 +54,7 @@ static int printable(int);
* The root is returned as "."
* All other domains are returned in non absolute form
*/
int
static int
dns_ns_name_ntop(const u_char *src, char *dst, size_t dstsiz) {
const u_char *cp;
char *dn, *eom;
@ -275,7 +275,7 @@ dns_ns_name_pton(const char *src, u_char *dst, size_t dstsiz) {
* return:
* -1 if it fails, or consumed octets if it succeeds.
*/
int
static int
dns_ns_name_unpack(const u_char *msg, const u_char *eom, const u_char *src,
u_char *dst, size_t dstsiz)
{