-#ifndef __DCPRINTH_BASE__
-#define __DCPRINTH_BASE__
+/////////////////////////////////////////////////////////////////////////////
+// Name: wx/dcprint.h
+// Purpose: wxPrinterDC base header
+// Author: Julian Smart
+// Modified by:
+// Created:
+// Copyright: (c) Julian Smart
+// RCS-ID: $Id$
+// Licence: wxWindows Licence
+/////////////////////////////////////////////////////////////////////////////
-#if defined(__WXMSW__)
+#ifndef _WX_DCPRINT_H_BASE_
+#define _WX_DCPRINT_H_BASE_
+
+#include "wx/defs.h"
+
+#if wxUSE_PRINTING_ARCHITECTURE
+
+#if defined(__WXPALMOS__)
+#include "wx/palmos/dcprint.h"
+#elif defined(__WXMSW__)
#include "wx/msw/dcprint.h"
#endif
+#if defined(__WXPM__)
+#include "wx/os2/dcprint.h"
+#endif
+#if defined(__WXMAC__)
+#include "wx/mac/dcprint.h"
+#endif
+#endif // wxUSE_PRINTING_ARCHITECTURE
#endif
- // __DCPRINTH_BASE__
+ // _WX_DCPRINT_H_BASE_