Initial import of the CDE 2.1.30 sources from the Open Group.

This commit is contained in:
Peter Howkins
2012-03-10 18:21:40 +00:00
commit 83b6996daa
18978 changed files with 3945623 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/* $XConsortium: DtHash.h /main/5 1996/08/29 15:42:13 cde-dec $ */
#ifndef _DtHash_h
#define _DtHash_h
typedef void * DtHashTbl;
DtHashTbl _DtUtilMakeHash(int size);
DtHashTbl _DtUtilMakeIHash(int size);
void ** _DtUtilGetHash(DtHashTbl tbl, const unsigned char * key);
void ** _DtUtilFindHash(DtHashTbl tbl,const unsigned char * key);
void * _DtUtilDelHash(DtHashTbl tbl, const unsigned char * key);
int _DtUtilOperateHash(DtHashTbl tbl, void (*op_func)(), void * usr_arg);
void _DtUtilDestroyHash(DtHashTbl tbl, int (*des_func)(), void * usr_arg);
typedef void (*DtHashOperateFunc)();
typedef int (*DtHashDestroyFunc)();
#endif /* _DtHash_h */