Enable SEH exception handling in the VS2012 project

This commit is contained in:
Vinnie Falco
2013-06-10 17:11:10 -07:00
parent c23b088755
commit 124c28b0eb
17 changed files with 9 additions and 60 deletions

View File

@@ -1,5 +1,5 @@
#ifndef __APPLICATION__
#define __APPLICATION__
#ifndef RIPPLE_APPLICATION_H
#define RIPPLE_APPLICATION_H
// VFALCO TODO Fix forward declares required for header dependency loops
class IFeatures;

View File

@@ -20,7 +20,6 @@
#include <openssl/buffer.h>
#include <openssl/evp.h>
#include "Application.h"
#include "RPC.h"
#include "RPCErr.h"

View File

@@ -1,10 +1,4 @@
#include "Application.h"
#include "Transaction.h"
#include "HashPrefixes.h"
#include "LedgerConsensus.h"
#include "LedgerTiming.h"
SETUP_LOG (NetworkOPs)
// This is the primary interface into the "client" portion of the program.

View File

@@ -1,12 +1,4 @@
#include "Pathfinder.h"
#include <queue>
#include <boost/foreach.hpp>
#include "Application.h"
SETUP_LOG (Pathfinder)
/*

View File

@@ -1,13 +1,4 @@
#include "PeerDoor.h"
#include <iostream>
#include <boost/bind.hpp>
#include <boost/mem_fn.hpp>
#include "Application.h"
SETUP_LOG (PeerDoor)
using namespace std;

View File

@@ -1,5 +1,4 @@
#include "RPCDoor.h"
#include "Application.h"
#include <boost/bind.hpp>
#include <iostream>

View File

@@ -11,7 +11,6 @@
#include "Pathfinder.h"
#include "RPCHandler.h"
#include "RPCSub.h"
#include "Application.h"
#include "AccountItems.h"
#include "Wallet.h"
#include "RippleCalc.h"

View File

@@ -1,6 +1,5 @@
#include <boost/thread.hpp>
#include "Application.h"
#include "RPCSub.h"
#include "CallRPC.h"

View File

@@ -11,7 +11,6 @@
#include <boost/pointer_cast.hpp>
#include "WSDoor.h"
#include "Application.h"
#include "CallRPC.h"
#include "LoadManager.h"
#include "RPCErr.h"

View File

@@ -4,7 +4,6 @@
//#include "../websocketpp/src/sockets/autotls.hpp"
//#include "../websocketpp/src/websocketpp.hpp"
#include "Application.h"
#include "WSConnection.h"
#include "WSHandler.h"

View File

@@ -1,8 +1,6 @@
#ifndef __WSHANDLER__
#define __WSHANDLER__
#include "Application.h"
extern void initSSLContext(boost::asio::ssl::context& context,
std::string key_file, std::string cert_file, std::string chain_file);

View File

@@ -1,15 +1,4 @@
#include <iostream>
#include <boost/asio.hpp>
#include <boost/foreach.hpp>
#include <boost/program_options.hpp>
#include <boost/test/included/unit_test.hpp>
#include "Application.h"
#include "CallRPC.h"
#include "RPCHandler.h"
namespace po = boost::program_options;
// VFALCO TODO make these singletons that initialize statically

View File

@@ -1,7 +1,3 @@
//#include <boost/test/unit_test.hpp>
//#include <boost/thread.hpp>
//#include <boost/date_time/posix_time/posix_time.hpp>
//#include "Application.h"
class LoadFeeTrack : public ILoadFeeTrack
{

View File

@@ -1,9 +1,4 @@
#include <boost/foreach.hpp>
#include "Application.h"
#include "LedgerTiming.h"
class Validations;
SETUP_LOG (Validations)