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:
Robin Dunn
2002-07-12 21:34:02 +00:00
parent 814f509cc9
commit 1883480f8d
3 changed files with 70 additions and 19 deletions

View File

@@ -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: