~ubuntu-branches/ubuntu/raring/reprepro/raring

« back to all changes in this revision

Viewing changes to pool.h

  • Committer: Bazaar Package Importer
  • Author(s): Bernhard R. Link
  • Date: 2011-05-05 16:34:23 UTC
  • mfrom: (21.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20110505163423-x49kbdijyoubai4x
Tags: 4.6.0-1
* new release
- general cleanup
- new FilterSrcList
* increase Standards-Version, no changes needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
retvalue pool_markdeleted(const char *);
18
18
 
19
19
/* Remove all files that lost their last reference, or only count them */
20
 
retvalue pool_removeunreferenced(struct database *, bool delete);
 
20
retvalue pool_removeunreferenced(bool delete);
21
21
 
22
22
/* Delete all added files that are not used, or only count them */
23
 
void pool_tidyadded(struct database*, bool deletenew);
 
23
void pool_tidyadded(bool deletenew);
24
24
 
25
25
/* delete and forget a single file */
26
 
retvalue pool_delete(struct database *, const char *);
 
26
retvalue pool_delete(const char *);
27
27
 
28
28
#endif