cfad47cfa3/t3compiler/tads3/include/t3test.h

4b825dc642cb6eb9a060e54bf8d69288fbee4904cfad47cfa334b206c65f22086bcc5d63e6f70944
1
#charset "us-ascii"
2
3
/* 
4
 *   Copyright (c) 1999, 2006 Michael J. Roberts
5
 *   
6
 *   This file is part of TADS 3
7
 *   
8
 *   This header defines the t3vmTEST function set.  This function set is
9
 *   intended primarily for use by the developers of the VM itself, for
10
 *   testing purposes.  User could should not use this function set, as the
11
 *   functionality here is not generally useful to "real" programs and is
12
 *   subject to future incompatible changes.  
13
 */
14
15
/*
16
 *   T3 intrinsic function set definition 
17
 */
18
19
#ifndef T3TEST_H
20
#define T3TEST_H
21
22
/* 
23
 *   define the T3 Test system interface 
24
 */
25
intrinsic 't3vmTEST/010000'
26
{
27
    t3test_get_obj_id(obj);
28
    t3test_get_obj_gc_state(id);
29
    t3test_get_charcode(c);
30
}
31
32
#endif /* T3TEST_H */