ed0769cdab
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22539 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
25 lines
601 B
C
25 lines
601 B
C
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wrapwin.h
|
|
// Purpose: Wrapper around <windows.h>, to be included instead of it
|
|
// Author: Vaclav Slavik
|
|
// Created: 2003/07/22
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2003 Vaclav Slavik
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_WRAPWIN_H_
|
|
#define _WX_WRAPWIN_H_
|
|
|
|
#include "wx/platform.h"
|
|
|
|
#ifndef STRICT
|
|
#define STRICT 1
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
#include "wx/msw/winundef.h"
|
|
|
|
#endif // _WX_WRAPWIN_H_
|
|
|