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_WIN32.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_WIN32.h')
| -rw-r--r-- | fluid/ExternalCodeEditor_WIN32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/ExternalCodeEditor_WIN32.h b/fluid/ExternalCodeEditor_WIN32.h index 90b272cae..29c3ba6a6 100644 --- a/fluid/ExternalCodeEditor_WIN32.h +++ b/fluid/ExternalCodeEditor_WIN32.h @@ -43,7 +43,7 @@ public: ExternalCodeEditor(); ~ExternalCodeEditor(); int is_editing(); - DWORD reap_editor(); + int reap_editor(DWORD *pid_reaped=NULL); void close_editor(); const char *filename() { return filename_; } int open_editor(const char *editor_cmd, const char *code); |
