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 8 #ifndef LIBSOLV_POOLVENDOR_H 9 #define LIBSOLV_POOLVENDOR_H 10 11 #include "pool.h" 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 Id pool_vendor2mask(Pool *pool, Id vendor); 18 void pool_setvendorclasses(Pool *pool, const char **vendorclasses); 19 void pool_addvendorclass(Pool *pool, const char **vendorclass); 20 21 #ifdef __cplusplus 22 } 23 #endif 24 25 #endif /* LIBSOLV_POOLVENDOR_H */ 26