forked from catmirrors/xlvns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LvnsCore.h
34 lines (27 loc) · 824 Bytes
/
LvnsCore.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* LEAF Visual Novel System For X
* (c) Copyright 1999,2000 Go Watanabe mailto:[email protected]
* All rights reserverd.
*
* ORIGINAL LVNS (c) Copyright 1996-1999 LEAF/AQUAPLUS Inc.
*
* $Id: LvnsCore.h,v 1.8 2001/06/10 09:07:03 go Exp $
*
*/
#ifndef __LvnsCore_h
#define __LvnsCore_h
#include <X11/Core.h>
#include "Lvns.h"
typedef struct _LvnsCoreClassRec *LvnsCoreWidgetClass;
typedef struct _LvnsCoreRec *LvnsCoreWidget;
extern WidgetClass lvnsCoreWidgetClass;
/* functions */
int LvnsCoreGetBestWidth(LvnsCoreWidget lcw);
int LvnsCoreGetBestHeight(LvnsCoreWidget lcw);
LvnsCommandInfo *LvnsCoreGetCommandList(LvnsCoreWidget lcw);
void LvnsCoreExecCommand(LvnsCoreWidget lcw, const char *command);
void LvnsCoreSetLvns(LvnsCoreWidget lcw, Lvns *lvns);
#ifndef XtRQuark
#define XtRQuark "Quark"
#endif
#endif