| Index: core/src/fxcrt/fxcrt_platforms.h
|
| diff --git a/core/src/fxcrt/fxcrt_platforms.h b/core/src/fxcrt/fxcrt_platforms.h
|
| index 4fd0588c946a32b50bb0646045b9a359b6d67e87..d95ae4f376be2c282a9c7ee60762a3af6ad95a36 100644
|
| --- a/core/src/fxcrt/fxcrt_platforms.h
|
| +++ b/core/src/fxcrt/fxcrt_platforms.h
|
| @@ -17,8 +17,8 @@ class CFXCRT_FileAccess_CRT : public IFXCRT_FileAccess
|
| public:
|
| CFXCRT_FileAccess_CRT();
|
| virtual ~CFXCRT_FileAccess_CRT();
|
| - virtual FX_BOOL Open(const CFX_ByteStringC& fileName, FX_DWORD dwMode);
|
| - virtual FX_BOOL Open(const CFX_WideStringC& fileName, FX_DWORD dwMode);
|
| + virtual bool Open(const CFX_ByteStringC& fileName, FX_DWORD dwMode);
|
| + virtual bool Open(const CFX_WideStringC& fileName, FX_DWORD dwMode);
|
| virtual void Close();
|
| virtual void Release();
|
| virtual FX_FILESIZE GetSize() const;
|
| @@ -28,8 +28,8 @@ public:
|
| virtual size_t Write(const void* pBuffer, size_t szBuffer);
|
| virtual size_t ReadPos(void* pBuffer, size_t szBuffer, FX_FILESIZE pos);
|
| virtual size_t WritePos(const void* pBuffer, size_t szBuffer, FX_FILESIZE pos);
|
| - virtual FX_BOOL Flush();
|
| - virtual FX_BOOL Truncate(FX_FILESIZE szFile);
|
| + virtual bool Flush();
|
| + virtual bool Truncate(FX_FILESIZE szFile);
|
| protected:
|
| FXSYS_FILE* m_hFile;
|
| };
|
|
|