added wxUSE_FSVOLUME

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-02-24 00:19:01 +00:00
parent 20a1eea1fd
commit 05815ab32f
5 changed files with 37 additions and 3 deletions

View File

@@ -20,6 +20,10 @@
#pragma interface "fsvolume.h"
#endif
#include "wx/defs.h"
#if wxUSE_FSVOLUME
// the volume flags
enum
{
@@ -49,6 +53,9 @@ enum wxFSVolumeKind
};
#if wxUSE_GUI
#include "wx/icon.h"
enum wxFSIconType
{
wxFS_VOL_ICO_SMALL = 0,
@@ -57,10 +64,11 @@ enum wxFSIconType
wxFS_VOL_ICO_SEL_LARGE,
wxFS_VOL_ICO_MAX
};
#endif // wxUSE_GUI
WX_DECLARE_OBJARRAY(wxIcon, wxIconArray);
#endif // wxUSE_GUI
class WXDLLEXPORT wxFSVolume
{
public:
@@ -118,5 +126,7 @@ private:
};
#endif // wxUSE_FSVOLUME
#endif // _WX_FSVOLUME_H_