1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 00:43:12 +02:00

Squashed commit: merge next (1.9.1) back to trunk.

SVN users, NOTE: THIS WILL NOT BUILD, NOR SHOULD YOU RUN IT YET.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1953 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
rburchell
2009-02-09 21:01:05 +00:00
parent d49b3a25fd
commit d7d01bdc5c
168 changed files with 15353 additions and 14937 deletions
+27
View File
@@ -0,0 +1,27 @@
/* POSIX emulation layer for Windows.
*
* Copyright (C) 2008 Robin Burchell <w00t@inspircd.org>
* Copyright (C) 2008 Anope Team <info@anope.org>
*
* Please read COPYING and README for further details.
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*
* $Id$
*
*/
#ifdef WIN32
const char *dlerror()
{
static char errbuf[513];
DWORD err = GetLastError();
if (err == 0)
return NULL;
FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS, NULL, err, 0, errbuf, 512,
NULL);
return errbuf;
}
#endif