summaryrefslogtreecommitdiffstats
path: root/include/store
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2017-05-29 23:58:44 +1000
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2017-06-16 16:48:50 +0200
commitdf65749845192ded79a9ea6ad3208eb2d9bcf6d1 (patch)
tree60a71341fce8f300407da0963279f10238c43507 /include/store
parentResolves: rhbz#1454693 segv if tiled rendering is interrupted (diff)
downloadcore-df65749845192ded79a9ea6ad3208eb2d9bcf6d1.tar.gz
core-df65749845192ded79a9ea6ad3208eb2d9bcf6d1.zip
Remove a bunch of comment cruft - esp. "the end." bits
Change-Id: I5a339a4211ec8eb547459996be69610b9f2b3766 Reviewed-on: https://gerrit.libreoffice.org/38147 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'include/store')
-rw-r--r--include/store/store.h25
-rw-r--r--include/store/store.hxx22
-rw-r--r--include/store/types.h7
3 files changed, 0 insertions, 54 deletions
diff --git a/include/store/store.h b/include/store/store.h
index bd6027b6390e..2e606e565856 100644
--- a/include/store/store.h
+++ b/include/store/store.h
@@ -33,7 +33,6 @@ extern "C" {
*/
typedef void* storeHandle;
-
/** Acquire a Handle.
@param Handle [in] the Handle.
@return store_E_None upon success
@@ -42,7 +41,6 @@ STORE_DLLPUBLIC storeError SAL_CALL store_acquireHandle (
storeHandle Handle
) SAL_THROW_EXTERN_C();
-
/** Release a Handle.
@param Handle [in] the Handle.
@return store_E_None upon success,
@@ -52,13 +50,10 @@ STORE_DLLPUBLIC storeError SAL_CALL store_releaseHandle (
storeHandle Handle
) SAL_THROW_EXTERN_C();
-
-
/** File Handle opaque type.
*/
typedef void* storeFileHandle;
-
/** Open a temporary file in memory.
@param nPageSize [in] the creation page size,
integer multiple of minimum page size.
@@ -70,7 +65,6 @@ STORE_DLLPUBLIC storeError SAL_CALL store_createMemoryFile (
storeFileHandle *phFile
) SAL_THROW_EXTERN_C();
-
/** Open a file.
@param pFilename [in] the filename as URL or system path.
@param eAccessMode [in] the access mode.
@@ -90,7 +84,6 @@ STORE_DLLPUBLIC storeError SAL_CALL store_openFile (
storeFileHandle *phFile
) SAL_THROW_EXTERN_C();
-
/** Close a file.
@param hFile [in] the File Handle.
@return store_E_None upon success,
@@ -100,7 +93,6 @@ STORE_DLLPUBLIC storeError SAL_CALL store_closeFile (
storeFileHandle hFile
) SAL_THROW_EXTERN_C();
-
/** Flush a file.
@param hFile [in] the File Handle.
@return store_E_None upon success
@@ -109,12 +101,10 @@ STORE_DLLPUBLIC storeError SAL_CALL store_flushFile (
storeFileHandle hFile
) SAL_THROW_EXTERN_C();
-
/** Directory Handle opaque type.
*/
typedef void* storeDirectoryHandle;
-
/** Open a directory.
@see store_openFile()
@@ -133,7 +123,6 @@ STORE_DLLPUBLIC storeError SAL_CALL store_openDirectory (
storeDirectoryHandle *phDirectory
) SAL_THROW_EXTERN_C();
-
/** Find first directory entry.
@param hDirectory [in] the Directory Handle.
@param pFindData [out] the Find Data structure.
@@ -145,7 +134,6 @@ STORE_DLLPUBLIC storeError SAL_CALL store_findFirst (
storeFindData *pFindData
) SAL_THROW_EXTERN_C();
-
/** Find next directory entry.
@param hDirectory [in] the Directory Handle.
@param pFindData [out] the Find Data structure.
@@ -157,13 +145,10 @@ STORE_DLLPUBLIC storeError SAL_CALL store_findNext (
storeFindData *pFindData
) SAL_THROW_EXTERN_C();
-
-
/** Stream Handle opaque type.
*/
typedef void* storeStreamHandle;
-
/** Open a stream.
@see store_openFile()
@@ -182,7 +167,6 @@ STORE_DLLPUBLIC storeError SAL_CALL store_openStream (
storeStreamHandle *phStrm
) SAL_THROW_EXTERN_C();
-
/** Read from a stream.
@param hStrm [in] the Stream Handle.
@param nOffset [in] the offset of the first byte to read.
@@ -199,7 +183,6 @@ STORE_DLLPUBLIC storeError SAL_CALL store_readStream (
sal_uInt32 *pnDone
) SAL_THROW_EXTERN_C();
-
/** Write to a stream.
@param hStrm [in] the Stream Handle.
@param nOffset [in] the offset of the first byte to write.
@@ -216,8 +199,6 @@ STORE_DLLPUBLIC storeError SAL_CALL store_writeStream (
sal_uInt32 *pnDone
) SAL_THROW_EXTERN_C();
-
-
/** Remove a file entry.
@param hFile [in] the File Handle
@param pPath [in] the entry path
@@ -230,12 +211,6 @@ STORE_DLLPUBLIC storeError SAL_CALL store_remove (
rtl_uString *pName
) SAL_THROW_EXTERN_C();
-/*========================================================================
- *
- * The End.
- *
- *======================================================================*/
-
#ifdef __cplusplus
}
#endif
diff --git a/include/store/store.hxx b/include/store/store.hxx
index fc25856b903a..c995975458b5 100644
--- a/include/store/store.hxx
+++ b/include/store/store.hxx
@@ -29,11 +29,6 @@
namespace store
{
-/*========================================================================
- *
- * OStoreStream interface.
- *
- *======================================================================*/
class OStoreStream
{
public:
@@ -125,11 +120,6 @@ private:
storeStreamHandle m_hImpl;
};
-/*========================================================================
- *
- * OStoreDirectory interface.
- *
- *======================================================================*/
class OStoreDirectory
{
public:
@@ -238,11 +228,6 @@ private:
storeDirectoryHandle m_hImpl;
};
-/*========================================================================
- *
- * OStoreFile interface.
- *
- *======================================================================*/
class OStoreFile
{
public:
@@ -365,15 +350,8 @@ private:
storeFileHandle m_hImpl;
};
-/*========================================================================
- *
- * The End.
- *
- *======================================================================*/
-
} // namespace store
#endif /* ! INCLUDED_STORE_STORE_HXX */
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/store/types.h b/include/store/types.h
index fe8c1e090276..48a6b0ee6b19 100644
--- a/include/store/types.h
+++ b/include/store/types.h
@@ -131,13 +131,6 @@ typedef struct
sal_uInt32 m_nReserved;
} storeFindData;
-
-/*========================================================================
- *
- * The End.
- *
- *======================================================================*/
-
#ifdef __cplusplus
}
#endif