aboutsummaryrefslogtreecommitdiff
path: root/src/common/spawn.h
diff options
context:
space:
mode:
authorxiphon <xiphon@protonmail.com>2018-10-01 06:39:37 +0000
committerxiphon <xiphon@protonmail.com>2018-10-02 01:53:27 +0300
commitd5541e44feaa2be10c6a4ffb2746d59bb01a2b26 (patch)
tree3051a9d03be0e5fbfa0dd970f312f7e07636d272 /src/common/spawn.h
parentMerge pull request #4333 (diff)
downloadmonero-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);
}