c7618303f2
2008/04/01 12:34:19 thb 1.2.148.1: #i85898# Stripping all external header guards
25 lines
790 B
C
25 lines
790 B
C
#ifndef INCLUDED_RTL_SOURCE_HASH_H
|
|
#define INCLUDED_RTL_SOURCE_HASH_H
|
|
|
|
#include <sal/types.h>
|
|
#include <rtl/ustring.h>
|
|
|
|
#if defined __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
typedef struct StringHashTableImpl StringHashTable;
|
|
|
|
StringHashTable *rtl_str_hash_new (sal_uInt32 nSize);
|
|
void rtl_str_hash_free (StringHashTable *pHash);
|
|
rtl_uString *rtl_str_hash_intern (StringHashTable *pHash,
|
|
rtl_uString *pString,
|
|
int can_return);
|
|
void rtl_str_hash_remove (StringHashTable *pHash,
|
|
rtl_uString *pString);
|
|
|
|
#if defined __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* INCLUDED_RTL_SOURCE_HASH_H */
|