poolvendor.h 499 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2007, Novell Inc.
  3. *
  4. * This program is licensed under the BSD license, read LICENSE.BSD
  5. * for further information
  6. */
  7. #ifndef LIBSOLV_POOLVENDOR_H
  8. #define LIBSOLV_POOLVENDOR_H
  9. #include "pool.h"
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. Id pool_vendor2mask(Pool *pool, Id vendor);
  14. void pool_setvendorclasses(Pool *pool, const char **vendorclasses);
  15. void pool_addvendorclass(Pool *pool, const char **vendorclass);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif /* LIBSOLV_POOLVENDOR_H */