File: memchan.decls

package info (click to toggle)
memchan 2.3%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,356 kB
  • sloc: ansic: 3,320; sh: 990; tcl: 687; makefile: 48
file content (54 lines) | stat: -rw-r--r-- 1,397 bytes parent folder | download | duplicates (4)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# memchan.decls -- Copyright (C) 2004 Pat Thoyts <patthoyts@users.sourceforge.net>
#
#	This file contains the declarations for all supported public
#	functions that are exported by the Memcgan library via its stubs table.
#
#	This file is used to generate the memchanDecls.h and memchanStubInit.c
#	
#	DO NOT RE-NUMBER THE FUNCTIONS.
#	To preserve backwards compatability, new functions MUST BE appended with a 
#	new unique number.
#
# $Id: memchan.decls,v 1.1 2004/11/09 23:11:00 patthoyts Exp $

library memchan
interface memchan
#hooks {}

declare 0 generic {
    int Memchan_Init (Tcl_Interp *interp)
}

declare 1 generic {
    int Memchan_SafeInit (Tcl_Interp *interp)
}

declare 2 generic {
    Tcl_Channel Memchan_CreateMemoryChannel(Tcl_Interp *interp, int initialSize)
}

declare 3 generic {
    Tcl_Channel Memchan_CreateFifoChannel(Tcl_Interp *interp)
}

declare 4 generic {
    void Memchan_CreateFifo2Channel(Tcl_Interp *interp, \
                                        Tcl_Channel *aPtr, Tcl_Channel *bPtr)
}

declare 5 generic {
    Tcl_Channel Memchan_CreateZeroChannel(Tcl_Interp *interp)
}

declare 6 generic {
    Tcl_Channel Memchan_CreateNullChannel(Tcl_Interp *interp)
}

declare 7 generic {
    Tcl_Channel Memchan_CreateRandomChannel(Tcl_Interp *interp)
}

# -------------------------------------------------------------------------
# Local variables:
# mode: tcl
# End: