File: tkaniminit.c

package info (click to toggle)
ocamltk 41-1
  • links: PTS
  • area: non-free
  • in suites: hamm, slink
  • size: 1,096 kB
  • ctags: 2,142
  • sloc: ansic: 4,385; ml: 4,095; makefile: 441; sh: 5
file content (12 lines) | stat: -rw-r--r-- 235 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#include <tk.h>
#include <caml/mlvalues.h>

extern Tcl_Interp *cltclinterp;

value tkanim_init (rien) /* ML */
     value rien;
{
  if (Tkanim_Init(cltclinterp) != TCL_OK)
    tk_error ("Can't initialize TkAnim");
  return Val_unit;
}