blob: 443bff3778f3b5db2e320ec4dfea9be3b97434bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef LYSHOWINFO_H
#define LYSHOWINFO_H
#ifndef LYSTRUCTS_H
#include <LYStructs.h>
#endif /* LYSTRUCTS_H */
#ifdef __cplusplus
extern "C" {
#endif
extern BOOL LYVersionIsRelease(void);
extern const char *LYVersionStatus(void);
extern const char *LYVersionDate(void);
extern int LYShowInfo(DocInfo *doc,
DocInfo *newdoc,
char *owner_address);
#ifdef __cplusplus
}
#endif
#endif /* LYSHOWINFO_H */
|