cos_cache.h 501 B

12345678910111213141516171819
  1. /** BEGIN COPYRIGHT BLOCK
  2. * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
  3. * Copyright (C) 2005 Red Hat, Inc.
  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 */