diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-05-13 10:43:15 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-05-13 10:43:15 +0200 |
commit | 9a8411d3b13a4e3675f99f36d5b6e81c5eace9b6 (patch) | |
tree | 3b4b37d261c195c5429ddf8fb000a15693becef3 /include/osl/detail | |
parent | fe88fac28afac3ec0b837c1e2e38d9f8cf152080 (diff) |
osl_openFilePath is internal sal/osl/unx functionality
Change-Id: I14e4d08f209e3d6a444d6c09f9ffb9c178d8731d
Diffstat (limited to 'include/osl/detail')
-rw-r--r-- | include/osl/detail/file.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/osl/detail/file.h b/include/osl/detail/file.h index ddcc47eda260..96d880727d8e 100644 --- a/include/osl/detail/file.h +++ b/include/osl/detail/file.h @@ -12,36 +12,18 @@ #include <sal/config.h> -#include <sys/stat.h> - -#include <sal/saldllapi.h> -#include <sal/types.h> - /** @cond INTERNAL */ /* Some additions to the osl file functions for LibreOffice internal use. Needed for details in the Android support. */ -#if defined __cplusplus -extern "C" { -#endif - /* More flags needed for semantics that match the open() call that used to be in SvFileStream::Open(). */ #define osl_File_OpenFlag_Trunc 0x00000010L #define osl_File_OpenFlag_NoExcl 0x00000020L -SAL_DLLPUBLIC oslFileError SAL_CALL osl_openFilePath( - const char *cpFilePath, - oslFileHandle* pHandle, - sal_uInt32 uFlags ); - -#if defined __cplusplus -} -#endif - /** @endcond */ #endif /* INCLUDED_OSL_DETAIL_FILE_H */ |