diff options
author | xiphon <xiphon@protonmail.com> | 2018-10-01 06:39:37 +0000 |
---|---|---|
committer | xiphon <xiphon@protonmail.com> | 2018-10-02 01:53:27 +0300 |
commit | d5541e44feaa2be10c6a4ffb2746d59bb01a2b26 (patch) | |
tree | 3051a9d03be0e5fbfa0dd970f312f7e07636d272 /src/common/spawn.h | |
parent | Merge pull request #4333 (diff) | |
download | monero-d5541e44feaa2be10c6a4ffb2746d59bb01a2b26.tar.xz |
common: Windows 'spawn' support for tx and block notifications
Diffstat (limited to '')
-rw-r--r-- | src/common/spawn.h (renamed from src/common/exec.h) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/exec.h b/src/common/spawn.h index 4d2037798..c90a0f790 100644 --- a/src/common/exec.h +++ b/src/common/spawn.h @@ -31,6 +31,6 @@ namespace tools { -int exec(const char *filename, char * const argv[], bool wait); +int spawn(const char *filename, const std::vector<std::string>& args, bool wait); } |