diff options
| author | Greg Ercolano <erco@seriss.com> | 2020-06-18 18:24:45 -0700 |
|---|---|---|
| committer | Greg Ercolano <erco@seriss.com> | 2020-06-18 18:24:45 -0700 |
| commit | db07cea7580fbe6a92a62c9045e8877827d73d61 (patch) | |
| tree | 3a229d6665a77eb911976bee1ed7014ba985f36f /fluid/ExternalCodeEditor_UNIX.h | |
| parent | 76da518b9782c56f7f0f1d215c8d0161cd8ee95a (diff) | |
Fix problem with Windows pids being unsigned DWORDs
Had to get away from overloading PIDs with error codes,
so now error codes are returned separately from the PID.
Diffstat (limited to 'fluid/ExternalCodeEditor_UNIX.h')
| -rw-r--r-- | fluid/ExternalCodeEditor_UNIX.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/ExternalCodeEditor_UNIX.h b/fluid/ExternalCodeEditor_UNIX.h index e983c5cfa..355a041c7 100644 --- a/fluid/ExternalCodeEditor_UNIX.h +++ b/fluid/ExternalCodeEditor_UNIX.h @@ -31,7 +31,7 @@ public: ExternalCodeEditor(); ~ExternalCodeEditor(); int is_editing(); - pid_t reap_editor(); + int reap_editor(pid_t *pid_reaped=NULL); void close_editor(); const char *filename() { return filename_; } int open_editor(const char *editor_cmd, const char *code); |
