]>
git.saurik.com Git - wxWidgets.git/blob - src/palmos/utilsexc.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/utilsexec.cpp
3 // Purpose: wxExecute implementation for PalmOS
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
34 #include "wx/stream.h"
35 #include "wx/process.h"
37 #include "wx/apptrait.h"
39 #include "wx/module.h"
48 #include "wx/dde.h" // for WX_DDE hack in wxExecute
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
56 // this module globals
57 // ----------------------------------------------------------------------------
59 // we need to create a hidden window to receive the process termination
60 // notifications and for this we need a (Win) class name for it which we will
61 // register the first time it's needed
62 static const wxChar
*wxMSWEXEC_WNDCLASSNAME
= wxT("_wxExecute_Internal_Class");
63 static const wxChar
*gs_classForHiddenWindow
= NULL
;
65 // ----------------------------------------------------------------------------
67 // ----------------------------------------------------------------------------
69 // ============================================================================
71 // ============================================================================
73 // ============================================================================
74 // wxExecute functions family
75 // ============================================================================
79 // connect to the given server via DDE and ask it to execute the command
80 static bool wxExecuteDDE(const wxString
& ddeServer
,
81 const wxString
& ddeTopic
,
82 const wxString
& ddeCommand
)
89 long wxExecute(const wxString
& cmd
, int flags
, wxProcess
*handler
)
94 long wxExecute(wxChar
**argv
, int flags
, wxProcess
*handler
)