]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - win/inspircd_win32wrapper.h
DIE. DIE YOU FUCKING ASSHAT OF A BUG.
[user/henk/code/inspircd.git] / win / inspircd_win32wrapper.h
1 /*       +------------------------------------+\r
2  *       | Inspire Internet Relay Chat Daemon |\r
3  *       +------------------------------------+\r
4  *\r
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r
6  * See: http://www.inspircd.org/wiki/index.php/Credits\r
7  *\r
8  * This program is free but copyrighted software; see\r
9  *            the file COPYING for details.\r
10  *\r
11  * ---------------------------------------------------\r
12  */\r
13 \r
14 /* Windows Port\r
15    Wrapper Functions/Definitions\r
16    By Burlex */\r
17 \r
18 #ifndef INSPIRCD_WIN32WRAPPER_H\r
19 #define INSPIRCD_WIN32WRAPPER_H\r
20 \r
21 /* Define the WINDOWS macro. This means we're building on windows to the rest of the server.\r
22    I think this is more reasonable than using WIN32, especially if we're gonna be doing 64-bit compiles */\r
23 #define WINDOWS 1\r
24 \r
25 /* Begone shitty 'safe STL' warnings */\r
26 #define _SCL_SECURE_NO_WARNINGS\r
27 #define _CRT_SECURE_NO_WARNINGS\r
28 #define _AFX_SECURE_NO_WARNINGS\r
29 #define _ATL_SECURE_NO_WARNINGS\r
30 \r
31 /* Macros for exporting symbols - dependant on what is being compiled */\r
32 \r
33 #ifdef DLL_BUILD\r
34 #define CoreExport __declspec(dllimport)\r
35 #define DllExport __declspec(dllexport)\r
36 #else\r
37 #define CoreExport __declspec(dllexport)\r
38 #define DllExport __declspec(dllimport)\r
39 #endif\r
40 \r
41 /* Disable the deprecation warnings.. it spams :P */\r
42 #define _CRT_SECURE_NO_DEPRECATE\r
43 #define _SCL_SECURE_NO_DEPRECATE\r
44 \r
45 #include <string>\r
46 \r
47 /* Say we're building on windows 2000. Anyone running something older than this\r
48  * reeeeeeeally needs to upgrade! */\r
49 \r
50 #define _WIN32_WINNT 0x500\r
51 \r
52 /* Normal windows (platform-specific) includes */\r
53 #include <winsock2.h>\r
54 #include <windows.h>\r
55 #include <ws2tcpip.h>\r
56 #include <sys/types.h>\r
57 #include <sys/stat.h>\r
58 #include <direct.h>\r
59 #include <process.h>\r
60 #include <stdio.h>\r
61 #include <algorithm>\r
62 \r
63 /* strcasecmp is not defined on windows by default */\r
64 #define strcasecmp _stricmp\r
65 \r
66 /* Error macros need to be redirected to winsock error codes */\r
67 #define ETIMEDOUT WSAETIMEDOUT\r
68 #define ECONNREFUSED WSAECONNREFUSED\r
69 #define EADDRINUSE WSAEADDRINUSE\r
70 #define EINPROGRESS WSAEWOULDBLOCK\r
71 \r
72 /* Remember file descriptors are treated differently on windows ;) */\r
73 __inline int close(int socket) { return closesocket(socket); }\r
74 \r
75 /* Convert formatted (xxx.xxx.xxx.xxx) string to in_addr struct */\r
76 CoreExport int inet_pton(int af, const char * src, void * dst);\r
77 \r
78 /* Convert struct to formatted (xxx.xxx.xxx.xxx) string */\r
79 CoreExport const char * inet_ntop(int af, const void * src, char * dst, socklen_t cnt);\r
80 \r
81 /* Safe printf functions aren't defined in VC2003 */\r
82 #define snprintf _snprintf\r
83 #define vsnprintf _vsnprintf\r
84 \r
85 /* Recursive token function doesn't exist in VC++ */\r
86 CoreExport char * strtok_r(char *_String, const char *_Control, char **_Context);\r
87 \r
88 /* Unix-style sleep (argument is in seconds) */\r
89 __inline void sleep(int seconds) { Sleep(seconds * 1000); }\r
90 \r
91 /* IPV4 only convert string to address struct */\r
92 CoreExport int inet_aton(const char *, struct in_addr *);\r
93 \r
94 /* Unix-style get running user id */\r
95 CoreExport int geteuid();\r
96 \r
97 /* Handles colors in printf */\r
98 CoreExport int printf_c(const char * format, ...);\r
99 \r
100 /* getopt() wrapper */\r
101 # define no_argument            0\r
102 # define required_argument      1\r
103 # define optional_argument      2\r
104 struct option\r
105 {\r
106         char *name;\r
107         int has_arg;\r
108         int *flag;\r
109         int val;\r
110 };\r
111 extern char optarg[514];\r
112 int getopt_long_only (int ___argc, char *const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind);\r
113 \r
114 /* Accept Handlers */\r
115 CoreExport int __accept_socket(SOCKET s, sockaddr * addr, int * addrlen, void * acceptevent);\r
116 CoreExport int __getsockname(SOCKET s, sockaddr * name, int * namelen, void * acceptevent);\r
117 \r
118 /* Module Loading */\r
119 #define dlopen(path, state) (void*)LoadLibrary(path)\r
120 #define dlsym(handle, export) (void*)GetProcAddress((HMODULE)handle, export)\r
121 #define dlclose(handle) FreeLibrary((HMODULE)handle)\r
122 const char * dlerror();\r
123 \r
124 /* Unix-style directory searching functions */\r
125 #define chmod(filename, mode)  \r
126 struct dirent\r
127 {\r
128         char d_name[MAX_PATH];\r
129 };\r
130 \r
131 struct DIR\r
132 {\r
133         dirent dirent_pointer;\r
134         HANDLE find_handle;\r
135         WIN32_FIND_DATA find_data;\r
136         bool first;\r
137 };\r
138 \r
139 CoreExport DIR * opendir(const char * path);\r
140 CoreExport dirent * readdir(DIR * handle);\r
141 CoreExport void closedir(DIR * handle);\r
142 \r
143 /* Disable these stupid warnings.. */\r
144 #pragma warning(disable:4800)\r
145 #pragma warning(disable:4251)\r
146 #pragma warning(disable:4275)\r
147 #pragma warning(disable:4244)           // warning C4244: '=' : conversion from 'long' to 'short', possible loss of data\r
148 #pragma warning(disable:4267)           // warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data\r
149 #pragma warning(disable:4805)           // warning C4805: '!=' : unsafe mix of type 'char' and type 'bool' in operation\r
150 #pragma warning(disable:4311)           // warning C4311: 'type cast' : pointer truncation from 'accept_overlap *' to 'int'\r
151 #pragma warning(disable:4312)           // warning C4312: 'type cast' : conversion from 'int' to 'HANDLE' of greater size\r
152 #pragma warning(disable:4355)           // warning C4355: 'this' : used in base member initializer list\r
153 #pragma warning(disable:4996)           // warning C4996: 'std::_Traits_helper::move_s' was declared deprecated\r
154 \r
155 /* Mehhhh... typedefs. */\r
156 \r
157 typedef unsigned char uint8_t;\r
158 typedef unsigned long long uint64_t;\r
159 typedef signed char int8_t;\r
160 typedef signed long int32_t;\r
161 typedef signed long long int64_t;\r
162 \r
163 /* Shared memory allocation functions */\r
164 void * ::operator new(size_t iSize);\r
165 void ::operator delete(void * ptr);\r
166 \r
167 /* IPC Handlers */\r
168 class InspIRCd;\r
169 \r
170 void InitIPC();\r
171 void CheckIPC(InspIRCd * Instance);\r
172 void CloseIPC();\r
173 \r
174 /* Look up the nameserver in use from the registry on windows */\r
175 std::string FindNameServerWin();\r
176 \r
177 #endif\r
178 \r