icinga2/base/win32.h

19 lines
325 B
C
Raw Normal View History

#ifndef WIN32_H
#define WIN32_H
2012-03-28 13:24:49 +02:00
#define WIN32_LEAN_AND_MEAN
2012-03-28 13:24:49 +02:00
#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
2012-03-28 13:24:49 +02:00
#include <imagehlp.h>
2012-04-02 13:09:33 +02:00
#include <shlwapi.h>
2012-03-28 13:24:49 +02:00
typedef int socklen_t;
2012-04-02 13:09:33 +02:00
#define MAXPATHLEN MAX_PATH
#define I2_EXPORT __declspec(dllexport)
#define I2_IMPORT __declspec(dllimport)
#endif /* WIN32_H */