forked from gitpan/Tk-TableMatrix
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTableMatrix.xs
61 lines (44 loc) · 918 Bytes
/
TableMatrix.xs
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
#define PERL_NO_GET_CONTEXT
#include <EXTERN.h>
#include <perl.h>
#include <XSUB.h>
#undef MAX
#undef MIN
#include "tkGlue.def"
#include "pTk/tkPort.h"
#include "pTk/tkTable.h"
#include "pTk/tkInt.h"
#include "pTk/tixPort.h"
#include "pTk/tixInt.h"
#include "tkGlue.h"
#include "tkGlue.m"
#include "pTk/tkVMacro.h"
/* perltk TableMatrix's replacement for TCL_unsetVar. deletes an element in a hash */
EXTERN void tkTableUnsetElement _ANSI_ARGS_((Var hashEntry, char * key)){
int len;
dTHX;
len = strlen(key);
hv_delete( (HV*) hashEntry, key, len, G_DISCARD);
}
DECLARE_VTABLES;
MODULE = Tk::TableMatrix PACKAGE = Tk
PROTOTYPES: DISABLE
#ifdef TK800XSTK
void
tablematrix(...)
CODE:
{
XSRETURN(XSTkCommand(cv,(Tcl_CmdProc *)Tk_TableObjCmd,items,&ST(0)));
}
#else
void
tablematrix(...)
CODE:
{
XSRETURN(XSTkCommand(cv,1,Tk_TableObjCmd,items,&ST(0)));
}
#endif
BOOT:
{
IMPORT_VTABLES;
}