mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-28 21:21:30 +00:00
16 lines
205 B
C++
16 lines
205 B
C++
#pragma once
|
|
|
|
#include "common/strings.h"
|
|
|
|
#include <cstdio>
|
|
|
|
#if _WIN32
|
|
#define popen _popen
|
|
#define pclose _pclose
|
|
#endif
|
|
|
|
class Process {
|
|
public:
|
|
static std::string execute(const std::string &cmd);
|
|
};
|