1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 22:21:29 +00:00

Includes for Windows.

This commit is contained in:
david
2011-12-19 05:16:29 +00:00
parent d75d74b015
commit 63cd5edfb7

View File

@@ -1,18 +1,25 @@
#include "nbase.h"
#include <ctype.h> #include <ctype.h>
#include <dirent.h>
#include <errno.h> #include <errno.h>
#include <getopt.h>
#include <pwd.h>
#include <stdarg.h> #include <stdarg.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h>
#include "nbase.h" #include "nbase.h"
#ifndef WIN32
#include <dirent.h>
#include <getopt.h>
#include <pwd.h>
#include <unistd.h>
#include "config.h" #include "config.h"
#else
#include <shlobj.h>
#include "win_config.h"
#endif
/* See the file tools/examples/minimal_client.c in the Subversion source /* See the file tools/examples/minimal_client.c in the Subversion source
directory for an example of using the svn_client API. */ directory for an example of using the svn_client API. */