]> git.saurik.com Git - wxWidgets.git/blame - src/palmos/utilsexc.cpp
add @DATE@, @TIME@ and @TITLE@ macros to HTML printing (extended/modified patch 1528679)
[wxWidgets.git] / src / palmos / utilsexc.cpp
CommitLineData
ffecfa5a 1/////////////////////////////////////////////////////////////////////////////
e2731512 2// Name: src/palmos/utilsexec.cpp
5445a26c 3// Purpose: wxExecute implementation for PalmOS
e2731512 4// Author: William Osborne - minimal working wxPalmOS port
ffecfa5a
JS
5// Modified by:
6// Created: 10/13/04
e2731512 7// RCS-ID: $Id$
ffecfa5a
JS
8// Copyright: (c) William Osborne
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
ffecfa5a
JS
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27#ifndef WX_PRECOMP
28 #include "wx/utils.h"
29 #include "wx/app.h"
30 #include "wx/intl.h"
31 #include "wx/log.h"
530ecef0
WS
32 #if wxUSE_STREAMS
33 #include "wx/stream.h"
34 #endif
ffecfa5a
JS
35#endif
36
ffecfa5a
JS
37#include "wx/process.h"
38
39#include "wx/apptrait.h"
40
41#include "wx/module.h"
42
43#include <ctype.h>
44
45#include <stdio.h>
46#include <stdlib.h>
47#include <string.h>
48
49#if wxUSE_IPC
50 #include "wx/dde.h" // for WX_DDE hack in wxExecute
51#endif // wxUSE_IPC
52
53// ----------------------------------------------------------------------------
54// constants
55// ----------------------------------------------------------------------------
56
57// ----------------------------------------------------------------------------
58// this module globals
59// ----------------------------------------------------------------------------
60
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
64static const wxChar *wxMSWEXEC_WNDCLASSNAME = wxT("_wxExecute_Internal_Class");
65static const wxChar *gs_classForHiddenWindow = NULL;
66
67// ----------------------------------------------------------------------------
68// private types
69// ----------------------------------------------------------------------------
70
71// ============================================================================
72// implementation
73// ============================================================================
74
75// ============================================================================
76// wxExecute functions family
77// ============================================================================
78
79#if wxUSE_IPC
80
81// connect to the given server via DDE and ask it to execute the command
82static bool wxExecuteDDE(const wxString& ddeServer,
83 const wxString& ddeTopic,
84 const wxString& ddeCommand)
85{
86 return false;
87}
88
89#endif // wxUSE_IPC
90
91long wxExecute(const wxString& cmd, int flags, wxProcess *handler)
92{
93 return 0;
94}
95
96long wxExecute(wxChar **argv, int flags, wxProcess *handler)
97{
98 return 0;
99}