blob: 6372ac0e14a8d537652ccf90a8a1eff8d547d961 (
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
|
############################################################################
#
# File: listev.icn
#
# Subject: Program to list events
#
# Author: Ralph E. Griswold
#
# Date: August 16, 1994
#
############################################################################
#
# This file is in the public domain.
#
############################################################################
#
# This program list events. Event information is written
# by using image().
#
# This program is called as
#
# listev tp args
#
############################################################################
#
# Requires: Version 9.0 MT Icon with event monitoring
#
############################################################################
#
# Links: evinit, options
#
############################################################################
$include "etdefs.icn"
link evinit
link options
procedure main(args)
EvInit(args) | stop("*** cannot load TP")
while EvGet(T_Mask1) do
write(image(&eventcode), " : ", image(&eventvalue))
end
|