File: Language.h

package info (click to toggle)
axe 6.1.2-6.4
  • links: PTS
  • area: non-free
  • in suites: potato
  • size: 1,460 kB
  • ctags: 2,249
  • sloc: ansic: 20,650; sed: 361; tcl: 72; makefile: 44; sh: 20
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