cos_cache.h 516 B

12345678910111213141516171819
  1. /** BEGIN COPYRIGHT BLOCK
  2. * Copyright 2001 Sun Microsystems, Inc.
  3. * Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
  4. * All rights reserved.
  5. * END COPYRIGHT BLOCK **/
  6. #if !defined( _COS_CACHE_H )
  7. #define _COS_CACHE_H
  8. typedef void cos_cache;
  9. int cos_cache_init();
  10. void cos_cache_stop();
  11. int cos_cache_getref(cos_cache **ppCache);
  12. int cos_cache_addref(cos_cache *pCache);
  13. int cos_cache_release(cos_cache *pCache);
  14. void cos_cache_change_notify(Slapi_PBlock *pb);
  15. #endif /* _COS_CACHE_H */