File: Language.h

package info (click to toggle)
axe 6.1.2-16.2
  • links: PTS
  • area: non-free
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 1,592 kB
  • ctags: 2,245
  • sloc: ansic: 20,644; sed: 361; tcl: 72; makefile: 46; sh: 14
file content (17 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef Interp_h
#define Interp_h

#include <X11/Intrinsic.h>
#include <tcl.h>

typedef struct
{
    void       (* Initialize)();
    Tcl_Interp *interp;
    void       (* SetBuffer)();
    Widget     buffer;
} InterpRec;

extern InterpRec interpreter;

#endif