Fix missing win32 header

This commit is contained in:
Marek Roszko 2022-01-02 13:07:56 -05:00
parent 59be6a8d19
commit ec83537576
1 changed files with 9 additions and 7 deletions

View File

@ -19,13 +19,6 @@
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifdef __WXMSW__
#include <windows.h>
#include <gdiplus.h>
#include <cairo-win32.h>
#include <wx/msw/enhmeta.h>
#endif /* __WXMSW__ */
#include <gal/cairo/cairo_print.h>
#include <stdexcept>
@ -40,6 +33,15 @@ using std::max;
using std::min;
#endif
#ifdef __WXMSW__
#include <windows.h>
#include <ObjIdl.h>
#include <gdiplus.h>
#include <cairo-win32.h>
#include <wx/msw/enhmeta.h>
#endif /* __WXMSW__ */
#ifdef __WXMAC__
#include <ApplicationServices/ApplicationServices.h>
#include <cairo-quartz.h>