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