]> git.saurik.com Git - wxWidgets.git/blame - include/wx/filedlg.h
Disabled memory tracing code for mingw32,
[wxWidgets.git] / include / wx / filedlg.h
CommitLineData
34138703
JS
1#ifndef _WX_FILEDLG_H_BASE_
2#define _WX_FILEDLG_H_BASE_
c801d85f 3
c61f4f6d
VZ
4enum
5{
6 wxOPEN = 1,
7 wxSAVE = 2,
8 wxOVERWRITE_PROMPT = 4,
9 wxHIDE_READONLY = 8,
10 wxFILE_MUST_EXIST = 16,
11 wxMULTIPLE = 32
12};
13
2049ba38 14#if defined(__WXMSW__)
c801d85f 15#include "wx/msw/filedlg.h"
2049ba38 16#elif defined(__WXMOTIF__)
34138703 17#include "wx/motif/filedlg.h"
2049ba38 18#elif defined(__WXGTK__)
8b17ba72 19#include "wx/generic/filedlgg.h"
7c78e7c7
RR
20#elif defined(__WXQT__)
21#include "wx/qt/filedlg.h"
34138703
JS
22#elif defined(__WXMAC__)
23#include "wx/mac/filedlg.h"
1777b9bb
DW
24#elif defined(__WXPM__)
25#include "wx/os2/filedlg.h"
34138703
JS
26#elif defined(__WXSTUBS__)
27#include "wx/stubs/filedlg.h"
c801d85f
KB
28#endif
29
ba681060 30
c801d85f 31#endif
34138703 32 // _WX_FILEDLG_H_BASE_