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
55
56
57
58
59
60
61
62
|
/*
* tclPlatStubs.c --
*
* This file contains the wrapper functions for the platform independent
* unsupported Tcl API.
*
* Copyright (c) 1998-1999 by Scriptics Corporation.
* All rights reserved.
*
* RCS: @(#) $Id: tclPlatStubs.c,v 1.1 1999/03/03 00:38:42 stanton Exp $
*/
#include "tcl.h"
#include "tclPort.h"
/*
* WARNING: This file is automatically generated by the tools/genStubs.tcl
* script. Any modifications to the function declarations below should be made
* in the generic/tclInt.decls script.
*/
/* !BEGIN!: Do not edit below this line. */
/*
* Exported stub functions:
*/
#if !defined(__WIN32__) && !defined(MAC_TCL)
/* Slot 0 */
void
Tcl_CreateFileHandler(fd, mask, proc, clientData)
int fd;
int mask;
Tcl_FileProc * proc;
ClientData clientData;
{
(tclPlatStubsPtr->tcl_CreateFileHandler)(fd, mask, proc, clientData);
}
/* Slot 1 */
void
Tcl_DeleteFileHandler(fd)
int fd;
{
(tclPlatStubsPtr->tcl_DeleteFileHandler)(fd);
}
/* Slot 2 */
int
Tcl_GetOpenFile(interp, string, write, checkUsage, filePtr)
Tcl_Interp * interp;
char * string;
int write;
int checkUsage;
ClientData * filePtr;
{
return (tclPlatStubsPtr->tcl_GetOpenFile)(interp, string, write, checkUsage, filePtr);
}
#endif /* UNIX */
/* !END!: Do not edit above this line. */
|