mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
15 lines
275 B
C++
15 lines
275 B
C++
|
#ifndef LLARP_HOOK_SHELL_HPP
|
||
|
#define LLARP_HOOK_SHELL_HPP
|
||
|
|
||
|
#include "ihook.hpp"
|
||
|
|
||
|
namespace llarp
|
||
|
{
|
||
|
namespace hooks
|
||
|
{
|
||
|
/// exec file based hook notifier
|
||
|
Backend_ptr
|
||
|
ExecShellBackend(std::string execFilePath);
|
||
|
} // namespace hooks
|
||
|
} // namespace llarp
|
||
|
#endif
|