2010-11-20 12:29:18 +02:00
|
|
|
/*
|
|
|
|
* qpkg.h - Quick package database query
|
|
|
|
*
|
|
|
|
* Written 2010 by Werner Almesberger
|
|
|
|
* Copyright 2010 Werner Almesberger
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
2010-11-19 19:00:15 +02:00
|
|
|
#ifndef QPKG_H
|
|
|
|
#define QPKG_H
|
|
|
|
|
2010-11-22 03:53:27 +02:00
|
|
|
#include "id.h"
|
|
|
|
|
|
|
|
|
2010-11-19 19:00:15 +02:00
|
|
|
struct tree *packages;
|
|
|
|
struct tree *versions;
|
|
|
|
|
2010-11-22 01:55:25 +02:00
|
|
|
int debug;
|
|
|
|
|
2010-11-19 19:00:15 +02:00
|
|
|
#endif /* !QPKG_H */
|