diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-02-12 20:38:44 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-02-12 20:38:44 +0000 |
commit | 98500d70a8cf25af4bab80526fd128ccdc36ceeb (patch) | |
tree | 61624e0903150505dc09977ae9ff1bc9ab40ee2b /headers.h | |
parent | fa9dbd6b62ab161c29c9b8cf97b9c8da8ef4346e (diff) |
command line and JSON-RPC first draft, requires Boost 1.35 or higher for boost::asio,
added SetBitcoinAddress and GetBitcoinAddress methods on CScript,
critsect interlocks around mapAddressBook,
added some random delays in tx broadcast to improve privacy,
now compiles with MSVC 8.0
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@60 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'headers.h')
-rw-r--r-- | headers.h | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -29,6 +29,7 @@ #include <openssl/rand.h>
#include <openssl/sha.h>
#include <openssl/ripemd.h>
+#include <db_cxx.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
@@ -36,6 +37,7 @@ #include <float.h>
#include <assert.h>
#include <memory>
+#include <iostream>
#include <sstream>
#include <string>
#include <vector>
@@ -53,6 +55,8 @@ #include <boost/array.hpp>
#include <boost/bind.hpp>
#include <boost/function.hpp>
+#include <boost/filesystem.hpp>
+#include <boost/algorithm/string.hpp>
#ifdef __WXMSW__
#include <windows.h>
@@ -73,8 +77,6 @@ #include <errno.h>
#include <net/if.h>
#include <ifaddrs.h>
-#include <boost/filesystem.hpp>
-#include <boost/algorithm/string.hpp>
#endif
#ifdef __BSD__
#include <netinet/in.h>
@@ -85,8 +87,6 @@ using namespace std;
using namespace boost;
-
-
#include "strlcpy.h"
#include "serialize.h"
#include "uint256.h"
@@ -100,6 +100,7 @@ using namespace boost; #include "irc.h"
#include "main.h"
#include "market.h"
+#include "rpc.h"
#include "uibase.h"
#include "ui.h"
|