~ubuntu-dev/wxwidgets2.6/upstream-debian

« back to all changes in this revision

Viewing changes to include/wx/msw/wrapcdlg.h

  • Committer: Daniel T Chen
  • Date: 2006-06-26 10:15:11 UTC
  • Revision ID: crimsun@ubuntu.com-20060626101511-a4436cec4c6d9b35
ImportĀ DebianĀ 2.6.3.2.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
///////////////////////////////////////////////////////////////////////////////
 
2
// Name:        wx/msw/wrapcdlg.h
 
3
// Purpose:     Wrapper for the standard <commdlg.h> header
 
4
// Author:      Wlodzimierz ABX Skiba
 
5
// Modified by:
 
6
// Created:     22.03.2005
 
7
// RCS-ID:      $Id: wrapcdlg.h,v 1.1 2005/03/22 19:39:45 ABX Exp $
 
8
// Copyright:   (c) 2005 Wlodzimierz Skiba
 
9
// Licence:     wxWindows licence
 
10
///////////////////////////////////////////////////////////////////////////////
 
11
 
 
12
#ifndef _WX_MSW_WRAPCDLG_H_
 
13
#define _WX_MSW_WRAPCDLG_H_
 
14
 
 
15
#include "wx/defs.h"
 
16
 
 
17
#include "wx/msw/wrapwin.h"
 
18
#include "wx/msw/private.h"
 
19
#include "wx/msw/missing.h"
 
20
 
 
21
#if wxUSE_COMMON_DIALOGS && !defined(__SMARTPHONE__) && !defined(__WXMICROWIN__)
 
22
    #include <commdlg.h>
 
23
#endif
 
24
 
 
25
#endif // _WX_MSW_WRAPCDLG_H_
 
26