Index: src/OFDictionary.h ================================================================== --- src/OFDictionary.h +++ src/OFDictionary.h @@ -14,16 +14,18 @@ #import "OFObject.h" #import "OFEnumerator.h" @class OFArray; +/// \cond internal struct of_dictionary_bucket { OFObject *key; OFObject *object; uint32_t hash; }; +/// \endcond /** * The OFDictionary class is a class for using hash tables. */ @interface OFDictionary: OFObject #import "threading.h" +/// \cond internal struct locks_s { id obj; size_t count; size_t recursion; of_thread_t thread; of_mutex_t mutex; }; +/// \endcond static of_mutex_t mutex; static struct locks_s *locks = NULL; static size_t num_locks = 0;