26 Aug
2007
26 Aug
'07
8:25 a.m.
Hm, instead of renaming _alpm_checkdeps to alpm_checkdeps, I wonder if it wouldn't better to just add a wrapper instead, something like : alpm_list_t SYMEXPORT *alpm_checkdeps(...) { return(_alpm_checkdeps(...); } or a more specific function for computing the missing dependencies for a given database : alpm_list_t SYMEXPORT *alpm_dep_missing(pmdb_t *db) { return(_alpm_checkdeps(db, PM_TRANS_TYPE_ADD, alpm_db_getpkgcache(db))) } Any thoughts?