* Changed "true" to "TRUE" in some file: "true" doesn't exist in BC++ 5
* Added wxDataStream and wxProcess * Added the asynchronous end process notification on GTK and MSW * Updated configure* and setup.h * Added extended.c: Apple code to encode/decode float in IEEE format this code is removable by disabling USE_APPLE_CODEC git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@162 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -21,6 +21,7 @@
|
||||
#include "wx/list.h"
|
||||
#include "wx/window.h"
|
||||
#include "wx/filefn.h"
|
||||
#include "wx/process.h"
|
||||
|
||||
#if USE_IOSTREAMH
|
||||
#include <iostream.h>
|
||||
@@ -96,8 +97,10 @@ int WXDLLEXPORT wxHexToDec(char *buf);
|
||||
void WXDLLEXPORT wxDecToHex(int dec, char *buf);
|
||||
|
||||
// Execute another program. Returns 0 if there was an error, a PID otherwise.
|
||||
long WXDLLEXPORT wxExecute(char **argv, bool Async = FALSE);
|
||||
long WXDLLEXPORT wxExecute(const wxString& command, bool Async = FALSE);
|
||||
long WXDLLEXPORT wxExecute(char **argv, bool Async = FALSE,
|
||||
wxProcess *process = NULL);
|
||||
long WXDLLEXPORT wxExecute(const wxString& command, bool Async = FALSE,
|
||||
wxProcess *process = NULL);
|
||||
|
||||
#define wxSIGTERM 1
|
||||
|
||||
|
Reference in New Issue
Block a user