| Index: core/src/fxcrt/fxcrt_windows.h
|
| diff --git a/core/src/fxcrt/fxcrt_windows.h b/core/src/fxcrt/fxcrt_windows.h
|
| index 8dd2cddc8297259f753e325dec30bb351ebc4269..414b863a50be6eac0951fc86bc0a58284d8975bb 100644
|
| --- a/core/src/fxcrt/fxcrt_windows.h
|
| +++ b/core/src/fxcrt/fxcrt_windows.h
|
| @@ -15,8 +15,8 @@ class CFXCRT_FileAccess_Win64 : public IFXCRT_FileAccess
|
| public:
|
| CFXCRT_FileAccess_Win64();
|
| virtual ~CFXCRT_FileAccess_Win64();
|
| - 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;
|
| @@ -26,8 +26,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:
|
| void* m_hFile;
|
| };
|
|
|