aboutsummaryrefslogtreecommitdiff
path: root/Perl/Zinc.xs
blob: 02df3c14583a26ecab764e5b5ef10aa6e85c5598 (plain)
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
/*
  Copyright (c) 1995-1997 Nick Ing-Simmons. All rights reserved.
  This program is free software; you can redistribute it and/or
  modify it under the same terms as Perl itself.
*/

#include <EXTERN.h>
#include <perl.h>
#include <XSUB.h>

#include "tkGlue.def"

#include "pTk/tkPort.h"
#include "pTk/tkInt.h"
#include "pTk/tkVMacro.h"
#include "tkGlue.h"
#include "tkGlue.m"

extern int
RadarCmd(
	ClientData client_data,
	Tcl_Interp* interp,
	int argc,
	Arg* args );

extern int
VideomapCmd(
	ClientData client_data,
	Tcl_Interp* interp,
	int argc,
	Arg* args );

extern int
MapInfoCmd(
	ClientData client_data,
	Tcl_Interp* interp,
	int argc,
	Arg* args );

DECLARE_VTABLES;


MODULE = Tk::Radar	PACKAGE = Tk::Radar

PROTOTYPES: DISABLE

BOOT:
 {
  IMPORT_VTABLES;
  Lang_TkCommand("radar", RadarCmd);
  Lang_TkCommand("videomap", VideomapCmd);
  Lang_TkCommand("mapinfo", MapInfoCmd);
 }