mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-20 04:40:30 +00:00
dd714bfce8
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22761 a592a061-630c-0410-9148-cb99ea01b6c8
33 lines
593 B
C++
33 lines
593 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file LinkBackProxy.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Stefan Schimanski
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef LINKBACKPROXY_H
|
|
#define LINKBACKPROXY_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
///
|
|
int isLinkBackDataInPasteboard();
|
|
///
|
|
int editLinkBackFile(char const * filename);
|
|
///
|
|
void getLinkBackData(void const ** buf, unsigned * len);
|
|
///
|
|
void closeAllLinkBackLinks();
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // LINKBACKPROXY_H
|