mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-17 00:30:55 +00:00
24 lines
403 B
C++
24 lines
403 B
C++
|
#include <config.h>
|
||
|
|
||
|
#include "../Messages.h"
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
namespace lyx {
|
||
|
// Dummy LyXRC support
|
||
|
struct LyXRC { string icon_set; } lyxrc;
|
||
|
|
||
|
// Keep the linker happy on Windows
|
||
|
void lyx_exit(int) {}
|
||
|
|
||
|
docstring const _(string const & s) { return from_ascii(s); }
|
||
|
|
||
|
// Dummy language support
|
||
|
Messages const & getGuiMessages()
|
||
|
{
|
||
|
static Messages lyx_messages;
|
||
|
|
||
|
return lyx_messages;
|
||
|
}
|
||
|
}
|