bdb_res.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * $Id$
  3. *
  4. * Copyright (C) 2001-2003 FhG Fokus
  5. * Copyright (C) 2006-2007 iptelorg GmbH
  6. *
  7. * This file is part of SIP-router, a free SIP server.
  8. *
  9. * SIP-router is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License as published by
  11. * the Free Software Foundation; either version 2 of the License, or
  12. * (at your option) any later version
  13. *
  14. * SIP-router is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /*! \file
  24. * Berkeley DB :
  25. *
  26. * \ingroup database
  27. */
  28. #ifndef _BDB_RES_H_
  29. #define _BDB_RES_H_
  30. #include "../../lib/srdb2/db_drv.h"
  31. #include "../../lib/srdb2/db_res.h"
  32. typedef struct _bdb_res {
  33. db_drv_t gen;
  34. } bdb_res_t;
  35. int bdb_res(db_res_t* cmd);
  36. #endif /* _BDB_RES_H_ */