2016-08-03 07:38:57 -03:00
|
|
|
/*
|
2016-08-17 20:54:25 -03:00
|
|
|
* gui/gui.h - GUI for eeshow
|
2016-08-03 07:38:57 -03:00
|
|
|
*
|
|
|
|
* Written 2016 by Werner Almesberger
|
|
|
|
* Copyright 2016 by 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.
|
|
|
|
*/
|
|
|
|
|
2016-08-17 20:54:25 -03:00
|
|
|
#ifndef GUI_GUI_H
|
|
|
|
#define GUI_GUI_H
|
2016-08-03 07:38:57 -03:00
|
|
|
|
2016-08-05 10:24:39 -03:00
|
|
|
#include <stdbool.h>
|
2016-08-03 07:38:57 -03:00
|
|
|
|
2016-08-22 20:47:06 -03:00
|
|
|
#include "kicad/ext.h"
|
|
|
|
|
2016-08-03 07:38:57 -03:00
|
|
|
|
2016-08-22 20:47:06 -03:00
|
|
|
int gui(const struct file_names *fn, bool recurse, int limit);
|
2016-08-03 07:38:57 -03:00
|
|
|
|
2016-08-17 20:54:25 -03:00
|
|
|
#endif /* !GUI_GUI_H */
|