summaryrefslogtreecommitdiff
path: root/src/spawn.h
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2018-02-22 16:54:34 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2018-02-22 16:54:34 +0100
commit5e5c9c07291f6b09623d31c92b1fb61c4ede576e (patch)
tree0684c123db375336e0e03f0240155a12e744db16 /src/spawn.h
parent5ad912e1934061b38825801a27f7c12933878005 (diff)
Applied clang-format on source
Diffstat (limited to 'src/spawn.h')
-rw-r--r--src/spawn.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/spawn.h b/src/spawn.h
index c2d99bdb..d2e3d99c 100644
--- a/src/spawn.h
+++ b/src/spawn.h
@@ -21,11 +21,10 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#define SPAWN_H
#define WIN32_LEAN_AND_MEAN
-#include <windows.h>
-#include <tchar.h>
-#include <QFileInfo>
#include <QDir>
-
+#include <QFileInfo>
+#include <tchar.h>
+#include <windows.h>
/**
* @brief a dirty little trick so we can issue a clean restart from startBinary
@@ -44,7 +43,6 @@ private:
static ExitProxy *s_Instance;
};*/
-
/**
* @brief spawn a binary with Mod Organizer injected
*
@@ -60,9 +58,7 @@ private:
* @todo is the profile name even used any more?
* @todo is the hooked parameter used?
**/
-HANDLE startBinary(const QFileInfo &binary, const QString &arguments,
- const QDir &currentDirectory, bool hooked,
+HANDLE startBinary(const QFileInfo& binary, const QString& arguments, const QDir& currentDirectory, bool hooked,
HANDLE stdOut = INVALID_HANDLE_VALUE, HANDLE stdErr = INVALID_HANDLE_VALUE);
#endif // SPAWN_H
-