/***************************************************************************************************************************************************************** Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.** Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved.**** This copyrighted material is made available to anyone wishing to use,** modify, copy, or redistribute it subject to the terms and conditions** of the GNU General Public License v.2.***************************************************************************************************************************************************************/#ifndef __MEMORY_DOT_H__#define __MEMORY_DOT_H__intdlm_memory_init(void);voiddlm_memory_exit(void);structdlm_rsb*allocate_rsb(structdlm_ls*ls,intnamelen);voidfree_rsb(structdlm_rsb*r);structdlm_lkb*allocate_lkb(structdlm_ls*ls);voidfree_lkb(structdlm_lkb*l);structdlm_direntry*allocate_direntry(structdlm_ls*ls,intnamelen);voidfree_direntry(structdlm_direntry*de);char*allocate_lvb(structdlm_ls*ls);voidfree_lvb(char*l);#endif /* __MEMORY_DOT_H__ */