common constants (wxSeekMode) and types (off_t) to wxFile and wxStream are

now defined in filefn.h included by both file.h and stream.h


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@270 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1998-07-14 22:15:29 +00:00
parent eda3efe2f8
commit 45ea509a21
3 changed files with 31 additions and 29 deletions

View File

@@ -6,7 +6,7 @@
// Created: 29/01/98
// RCS-ID: $Id$
// Copyright: (c) 1998 Julian Smart
// Licence: wxWindows license
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#ifndef __FILEFNH__
@@ -16,8 +16,26 @@
#pragma interface "filefn.h"
#endif
#include "wx/list.h"
// ----------------------------------------------------------------------------
// constants
// ----------------------------------------------------------------------------
// define off_t
#include <sys/types.h>
#ifdef _MSC_VER
#define off_t _off_t
#endif
typedef enum {
wxFromStart,
wxFromCurrent,
wxFromEnd
} wxSeekMode;
// ----------------------------------------------------------------------------
// functions
// ----------------------------------------------------------------------------
bool WXDLLEXPORT wxFileExists(const wxString& filename);
#define FileExists wxFileExists
@@ -158,6 +176,10 @@ void WXDLLEXPORT wxSplitPath(const char *pszFileName,
// find a file in a list of directories, returns false if not found
bool WXDLLEXPORT wxFindFileInPath(wxString *pStr, const char *pszPath, const char *pszFile);
// ----------------------------------------------------------------------------
// classes
// ----------------------------------------------------------------------------
// Path searching
class WXDLLEXPORT wxPathList: public wxStringList
{