]>
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"
33 #include "wx/stream.h"
37 #include "wx/process.h"
39 #include "wx/apptrait.h"
41 #include "wx/module.h"
50 #include "wx/dde.h" // for WX_DDE hack in wxExecute
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 // ----------------------------------------------------------------------------
58 // this module globals
59 // ----------------------------------------------------------------------------
61 // we need to create a hidden window to receive the process termination
62 // notifications and for this we need a (Win) class name for it which we will
63 // register the first time it's needed
64 static const wxChar
*wxMSWEXEC_WNDCLASSNAME
= wxT("_wxExecute_Internal_Class");
65 static const wxChar
*gs_classForHiddenWindow
= NULL
;
67 // ----------------------------------------------------------------------------
69 // ----------------------------------------------------------------------------
71 // ============================================================================
73 // ============================================================================
75 // ============================================================================
76 // wxExecute functions family
77 // ============================================================================
81 // connect to the given server via DDE and ask it to execute the command
82 static bool wxExecuteDDE(const wxString
& ddeServer
,
83 const wxString
& ddeTopic
,
84 const wxString
& ddeCommand
)
91 long wxExecute(const wxString
& cmd
, int flags
, wxProcess
*handler
)
96 long wxExecute(wxChar
**argv
, int flags
, wxProcess
*handler
)