Commit 906c0cac authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

dnsapi: Declare some items static.

parent 7f0b93ea
......@@ -30,7 +30,7 @@
WINE_DEFAULT_DEBUG_CHANNEL(dnsapi);
HINSTANCE hdnsapi;
static HINSTANCE hdnsapi;
BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
{
......
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment