| 1234567891011121314151617181920212223 |
- #include <apt-pkg/acquire-item.h>
- #include <apt-pkg/init.h>
- #include <apt-pkg/error.h>
- int main()
- {
- pkgInitialize(*_config);
-
- pkgSourceList List;
- pkgAcquire Fetcher;
- List.ReadMainList();
-
- pkgSourceList::const_iterator I;
- for (I = List.begin(); I != List.end(); I++)
- {
- new pkgAcqIndex(&Fetcher,I);
- if (_error->PendingError() == true)
- break;
- }
-
- _error->DumpErrors();
- }
|