Files
wxWidgets/src/mac/carbon/utilsexc.cpp
Gilles Depeyrot 31d560bf7d improved error messages
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15981 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2002-06-29 11:56:42 +00:00

43 lines
953 B
C++

/////////////////////////////////////////////////////////////////////////////
// Name: utilsexec.cpp
// Purpose: Execution-related utilities
// Author: AUTHOR
// Modified by:
// Created: ??/??/98
// RCS-ID: $Id$
// Copyright: (c) AUTHOR
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#pragma implementation
#endif
#include "wx/utils.h"
#ifdef __DARWIN__
#include "wx/unix/execute.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifndef __DARWIN__
#define wxEXECUTE_WIN_MESSAGE 10000
long wxExecute(const wxString& command, int flags, wxProcess *handler)
{
// TODO
wxFAIL_MSG( _T("wxExecute() not yet implemented") );
return 0;
}
#endif
#ifdef __DARWIN__
int wxAddProcessCallback(wxEndProcessData *proc_data, int fd)
{
wxFAIL_MSG( _T("wxAddProcessCallback() not yet implemented") );
return 0;
}
#endif