From 5110c4743751145c4ae1934cd1d83bc6c55bb43f Mon Sep 17 00:00:00 2001 From: John Abd-El-Malek Date: Sat, 17 May 2014 22:33:34 -0700 Subject: Initial commit. --- core/src/fxcrt/fxcrt_posix.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 core/src/fxcrt/fxcrt_posix.h (limited to 'core/src/fxcrt/fxcrt_posix.h') diff --git a/core/src/fxcrt/fxcrt_posix.h b/core/src/fxcrt/fxcrt_posix.h new file mode 100644 index 0000000000..29c84adb1f --- /dev/null +++ b/core/src/fxcrt/fxcrt_posix.h @@ -0,0 +1,33 @@ +// Copyright 2014 PDFium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com + +#ifndef _FXCRT_LINUX_ +#define _FXCRT_LINUX_ +#include "extension.h" +#if _FXM_PLATFORM_ == _FXM_PLATFORM_LINUX_ || _FXM_PLATFORM_ == _FXM_PLATFORM_APPLE_ || _FXM_PLATFORM_ == _FXM_PLATFORM_ANDROID_ +class CFXCRT_FileAccess_Posix : public IFXCRT_FileAccess, public CFX_Object +{ +public: + CFXCRT_FileAccess_Posix(); + virtual ~CFXCRT_FileAccess_Posix(); + virtual FX_BOOL Open(FX_BSTR fileName, FX_DWORD dwMode); + virtual FX_BOOL Open(FX_WSTR fileName, FX_DWORD dwMode); + virtual void Close(); + virtual void Release(IFX_Allocator* pAllocator = NULL); + virtual FX_FILESIZE GetSize() const; + virtual FX_FILESIZE GetPosition() const; + virtual FX_FILESIZE SetPosition(FX_FILESIZE pos); + virtual size_t Read(void* pBuffer, size_t szBuffer); + 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); +protected: + FX_INT32 m_nFD; +}; +#endif +#endif -- cgit v1.2.3