mirror of
git://projects.qi-hardware.com/fped.git
synced 2024-11-18 08:07:31 +02:00
8982d09474
This is a first crude attempt at allowing reloading without exiting fped. This should be useful when writing a design as text and using the GUI only to visualize it. Reload is only enabled (in the File menu) if the file doesn't have the "MACHINE-GENERATED" header. Known bugs: - exits on parse errors - leaks memory badly - current frame is reset to root
24 lines
514 B
C
24 lines
514 B
C
/*
|
|
* fped.h - Things fped.c exports
|
|
*
|
|
* Written 2010, 2012 by Werner Almesberger
|
|
* Copyright 2010, 2012 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.
|
|
*/
|
|
|
|
|
|
#ifndef FPED_H
|
|
#define FPED_H
|
|
|
|
extern char *save_file_name;
|
|
extern int no_save;
|
|
|
|
|
|
void reload(void);
|
|
|
|
#endif /* !FPED_H */
|