File: oop-tcl.h

package info (click to toggle)
liboop 1.0.1-2.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 2,108 kB
  • sloc: sh: 11,098; ansic: 2,533; makefile: 133
file content (18 lines) | stat: -rw-r--r-- 488 bytes parent folder | download | duplicates (18)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* oop-glib.h, liboop, copyright 1999 Dan Egnor

   This is free software; you can redistribute it and/or modify it under the
   terms of the GNU Lesser General Public License, version 2.1 or later.
   See the file COPYING for details. */

#ifndef OOP_TCL_H
#define OOP_TCL_H

#include "oop.h"

/* Create an event source based on the Tcl event loop. */
oop_source *oop_tcl_new(void);

/* Delete the event source so created.  (Uses reference counting.) */
void oop_tcl_done(void);

#endif