From df65749845192ded79a9ea6ad3208eb2d9bcf6d1 Mon Sep 17 00:00:00 2001 From: Chris Sherlock Date: Mon, 29 May 2017 23:58:44 +1000 Subject: Remove a bunch of comment cruft - esp. "the end." bits Change-Id: I5a339a4211ec8eb547459996be69610b9f2b3766 Reviewed-on: https://gerrit.libreoffice.org/38147 Tested-by: Jenkins Reviewed-by: Samuel Mehrbrodt --- include/store/store.h | 25 ------------------------- include/store/store.hxx | 22 ---------------------- include/store/types.h | 7 ------- 3 files changed, 54 deletions(-) (limited to 'include/store') 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 -- cgit