2010-11-20 07:29:18 -03: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 14:00:15 -03:00
|
|
|
#ifndef QPKG_H
|
|
|
|
#define QPKG_H
|
|
|
|
|
2010-11-21 22:53:27 -03:00
|
|
|
#include "id.h"
|
|
|
|
|
|
|
|
|
2010-11-19 14:00:15 -03:00
|
|
|
struct tree *packages;
|
|
|
|
struct tree *versions;
|
|
|
|
|
2010-11-21 20:55:25 -03:00
|
|
|
int debug;
|
|
|
|
|
2010-11-19 14:00:15 -03:00
|
|
|
#endif /* !QPKG_H */
|