blob: 68981f6cd2d8ec3833faf7eee6115f14ed7d2e2e (
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
|
/*
* $Date: 2007/12/10 22:13:08 $
* $Source: /cvsroot/videoteco/videoteco/tecvms.h,v $
* $Revision: 1.2 $
* $Locker: $
*/
/* tecvms.h
* Include file for VMS build
* %W% (PC) %G%
*
*
* Copyright (C) 1985-2007 BY Paul Cantrell
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#define VMS
#include file
#include errno
#include stdio
#include ctype
#include perror
#include signal
#include jpidef
#include ssdef
#include iodef
#include stsdef
#include descrip
#include ttdef
#ifndef LIB$K_CLI_LOCAL_SYM
#define LIB$K_CLI_LOCAL_SYM 1
#endif
#ifndef CLI$M_NOWAIT
#define CLI$M_NOWAIT (1<<0)
#endif
#ifndef CLI$M_NOTIFY
#define CLI$M_NOTIFY (1<<4)
#endif
|