aboutsummaryrefslogtreecommitdiff
path: root/irc.h
diff options
context:
space:
mode:
authorsirius-m <sirius-m@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2009-10-31 09:11:43 +0000
committersirius-m <sirius-m@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2009-10-31 09:11:43 +0000
commitfe9f3d626d79f71d819caf43878299fa5e6af83e (patch)
tree6f8b6bdd3a53a58371dacb507d06ae6aaa18daf3 /irc.h
parent32d490313b21d5cea64f99ca9db4388591bb3ab9 (diff)
downloadbitcoin-fe9f3d626d79f71d819caf43878299fa5e6af83e.tar.xz
Linux alternatives for the Windows headers and PerformanceCounter. Some typedefs and #defines for the Linux build. Fixed GetDataDir.
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@23 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'irc.h')
-rw-r--r--irc.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/irc.h b/irc.h
index 91c3ffe686..1dc348a8be 100644
--- a/irc.h
+++ b/irc.h
@@ -1,6 +1,11 @@
// Copyright (c) 2009 Satoshi Nakamoto
// Distributed under the MIT/X11 software license, see the accompanying
// file license.txt or http://www.opensource.org/licenses/mit-license.php.
+
+#ifndef __WXMSW__
+#define closesocket(s) close(s)
+typedef u_int SOCKET;
+#endif
extern bool RecvLine(SOCKET hSocket, string& strLine);
extern void ThreadIRCSeed(void* parg);