# HG changeset patch # User Chris Cannam # Date 1477328077 -3600 # Node ID 535ee33eb8b3cfd0a357eb6a4429ea17db785150 # Parent 247d8d533a9c007e30513a0483a1e05a226455cc# Parent c996610b8a4645be9972d7f4c8d644327b78bfac Merge diff -r 247d8d533a9c -r 535ee33eb8b3 vamp-server/server.cpp --- a/vamp-server/server.cpp Mon Oct 24 17:53:33 2016 +0100 +++ b/vamp-server/server.cpp Mon Oct 24 17:54:37 2016 +0100 @@ -13,7 +13,14 @@ #include #include -#include // getpid for logging +// pid for logging +#ifdef _WIN32 +#include +static int pid = _getpid(); +#else +#include +static int pid = getpid(); +#endif using namespace std; using namespace piper_vamp; @@ -24,8 +31,6 @@ // - Use Vamp C API (vamp.h) directly rather than converting to C++ //!!! Doing the above for process() and finish() alone would be a good start -static int pid = getpid(); - void usage() { string myname = "piper-vamp-server";