I forgot the wxSignal enum
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16160 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -763,12 +763,6 @@ public:
|
||||
//----------------------------------------------------------------------
|
||||
|
||||
|
||||
enum {
|
||||
/* event type */
|
||||
wxEVT_END_PROCESS
|
||||
};
|
||||
|
||||
|
||||
enum wxKillError
|
||||
{
|
||||
wxKILL_OK, // no error
|
||||
@@ -778,6 +772,37 @@ enum wxKillError
|
||||
wxKILL_ERROR // another, unspecified error
|
||||
};
|
||||
|
||||
enum wxSignal
|
||||
{
|
||||
wxSIGNONE = 0, // verify if the process exists under Unix
|
||||
wxSIGHUP,
|
||||
wxSIGINT,
|
||||
wxSIGQUIT,
|
||||
wxSIGILL,
|
||||
wxSIGTRAP,
|
||||
wxSIGABRT,
|
||||
wxSIGIOT = wxSIGABRT, // another name
|
||||
wxSIGEMT,
|
||||
wxSIGFPE,
|
||||
wxSIGKILL,
|
||||
wxSIGBUS,
|
||||
wxSIGSEGV,
|
||||
wxSIGSYS,
|
||||
wxSIGPIPE,
|
||||
wxSIGALRM,
|
||||
wxSIGTERM
|
||||
|
||||
// further signals are different in meaning between different Unix systems
|
||||
};
|
||||
|
||||
|
||||
|
||||
enum {
|
||||
/* event type */
|
||||
wxEVT_END_PROCESS
|
||||
};
|
||||
|
||||
|
||||
|
||||
class wxProcessEvent : public wxEvent {
|
||||
public:
|
||||
|
Reference in New Issue
Block a user