Files correlati : Commento : Spostamento in libraries delle librerie esterne di Campo per una maggiore pulizia e organizzazione git-svn-id: svn://10.65.10.50/branches/R_10_00@24150 c028cbd2-c16b-5b4b-a496-9718f37d4682
21 lines
847 B
C
21 lines
847 B
C
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/private/browserhack28.h
|
|
// Purpose: Allows GUI library to override base wxLaunchDefaultBrowser.
|
|
// Author: David Elliott
|
|
// Modified by:
|
|
// Created: 2007-08-19
|
|
// RCS-ID: $Id: browserhack28.h 48184 2007-08-19 19:22:09Z DE $
|
|
// Copyright: (c) David Elliott
|
|
// Licence: wxWidgets licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_PRIVATE_BROWSERHACK28_H_
|
|
#define _WX_PRIVATE_BROWSERHACK28_H_
|
|
|
|
typedef bool (*wxLaunchDefaultBrowserImpl_t)(const wxString& url, int flags);
|
|
|
|
// Function the GUI library can call to provide a better implementation
|
|
WXDLLIMPEXP_BASE void wxSetLaunchDefaultBrowserImpl(wxLaunchDefaultBrowserImpl_t newImpl);
|
|
|
|
#endif //ndef _WX_PRIVATE_BROWSERHACK28_H_
|