8282c1be0f
Windows CE doesn't seem to be supported by Microsoft any longer. Last CE release was in early 2013 and the PocketPC and Smartphone targets supported by wxWidgets are long gone. The build files where already removed in an earlier cleanup this commit removes all files, every #ifdef and all documentation regarding the Windows CE support. Closes https://github.com/wxWidgets/wxWidgets/pull/81
28 lines
696 B
C
28 lines
696 B
C
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/msw/wrapcdlg.h
|
|
// Purpose: Wrapper for the standard <commdlg.h> header
|
|
// Author: Wlodzimierz ABX Skiba
|
|
// Modified by:
|
|
// Created: 22.03.2005
|
|
// Copyright: (c) 2005 Wlodzimierz Skiba
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_MSW_WRAPCDLG_H_
|
|
#define _WX_MSW_WRAPCDLG_H_
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/msw/wrapwin.h"
|
|
#include "wx/msw/private.h"
|
|
#include "wx/msw/missing.h"
|
|
|
|
#if wxUSE_COMMON_DIALOGS
|
|
#include <commdlg.h>
|
|
#endif
|
|
|
|
#include "wx/msw/winundef.h"
|
|
|
|
#endif // _WX_MSW_WRAPCDLG_H_
|
|
|