diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-01-01 22:55:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-01-04 20:43:13 +0300 |
commit | 34e1023596c61c4dfd6279cde1f97b318e04e3fd (patch) | |
tree | 4e9598d97fa4d8cd90003bd7f5d306e44b488305 /src/utils/process.h | |
parent | e2b133ffa97e0bf4c3bf44099705ca671d787c4c (diff) | |
download | plus-34e1023596c61c4dfd6279cde1f97b318e04e3fd.tar.gz plus-34e1023596c61c4dfd6279cde1f97b318e04e3fd.tar.bz2 plus-34e1023596c61c4dfd6279cde1f97b318e04e3fd.tar.xz plus-34e1023596c61c4dfd6279cde1f97b318e04e3fd.zip |
Add process execute functions.
Diffstat (limited to 'src/utils/process.h')
-rw-r--r-- | src/utils/process.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/src/utils/process.h b/src/utils/process.h new file mode 100644 index 000000000..27a73ba20 --- /dev/null +++ b/src/utils/process.h @@ -0,0 +1,29 @@ +/* + * The ManaPlus Client + * Copyright (C) 2011 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef UTILS_PROCESS_H +#define UTILS_PROCESS_H + +#include <string> + +int execFile(std::string pathName, std::string name, + std::string arg1, std::string arg2, int waitTime = 0); + +#endif // UTILS_PROCESS_H |