peerplays-fc/include/fc/interprocess/signals.hpp
2013-11-24 13:00:21 -05:00

8 lines
180 B
C++

#pragma once
#include <functional>
namespace fc
{
/// handler will be called from ASIO thread
void set_signal_handler( std::function<void(int)> handler, int signal_num );
}