2002-06-18 15:44:30 +00:00
|
|
|
|
// -*- C++ -*-
|
2002-08-15 17:48:53 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file guiapi.h
|
2002-09-05 15:14:23 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-08-15 17:48:53 +00:00
|
|
|
|
*
|
2002-12-01 22:59:25 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2002-09-05 14:10:50 +00:00
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
|
* Full author contact details are available in file CREDITS.
|
2002-08-15 17:48:53 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef GUIAPI_H
|
|
|
|
|
#define GUIAPI_H
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
|
class Dialogs;
|
|
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
|
void gui_show_dialog(Dialogs *, char const * name, char const * data);
|
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
|
} // extern "C"
|
2002-08-15 17:48:53 +00:00
|
|
|
|
|
|
|
|
|
#endif // GUIAPI_H
|