Subversion Repositories tendra.SVN

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
#   		 Crown Copyright (c) 1997
2
#   
3
#   This TenDRA(r) Computer Program is subject to Copyright
4
#   owned by the United Kingdom Secretary of State for Defence
5
#   acting through the Defence Evaluation and Research Agency
6
#   (DERA).  It is made available to Recipients with a
7
#   royalty-free licence for its use, reproduction, transfer
8
#   to other parties and amendment for any purpose not excluding
9
#   product development provided that any such use et cetera
10
#   shall be deemed to be acceptance of the following conditions:-
11
#   
12
#       (1) Its Recipients shall ensure that this Notice is
13
#       reproduced upon any copies or amended versions of it;
14
#   
15
#       (2) Any amended version of it shall be clearly marked to
16
#       show both the nature of and the organisation responsible
17
#       for the relevant amendment or amendments;
18
#   
19
#       (3) Its onward transfer from a recipient to another
20
#       party shall be deemed to be that party's acceptance of
21
#       these conditions;
22
#   
23
#       (4) DERA gives no warranty or assurance as to its
24
#       quality or suitability for any purpose and DERA accepts
25
#       no liability whatsoever in relation to any use to which
26
#       it may be put.
27
#
28
+USE "svid3", "", "config" ;
29
 
30
+IF %% __SYSV_UPDATE %%
31
 
32
/* Also see fmtmsg.h - the MM values are not necessarily the same! */
33
+USE "svid3", "stdio.h" ;
34
+USE "ansi", "stdarg.h", "va_args" ;
35
 
36
+CONST int MM_NOSTD.1 | MM_NOSTD_pfmt ;
37
+CONST int MM_STD.1 | MM_STD_pfmt ;
38
+CONST int MM_NOGET.1 | MM_NOGET_pfmt ;
39
+CONST int MM_GET.1 | MM_GET_pfmt ;
40
+CONST int MM_HALT.1 | MM_HALT_pfmt ;
41
+CONST int MM_ERROR.1 | MM_ERROR_pfmt ;
42
+CONST int MM_WARNING.1 | MM_WARNING_pfmt ;
43
+CONST int MM_INFO.1 | MM_INFO_pfmt ;
44
+CONST int MM_ACTION.1 | MM_ACTION_pfmt ;
45
+CONST int MM_CONSOLE.1 | MM_CONSOLE_pfmt ;
46
+CONST int MM_NOCONSOLE.1 | MM_NOCONSOLE_pfmt ;
47
+CONST int MM_HARD.1 | MM_HARD_pfmt ;
48
+CONST int MM_SOFT.1 | MM_SOFT_pfmt ;
49
+CONST int MM_FIRM.1 | MM_FIRM_pfmt ;
50
+CONST int MM_APPL.1 | MM_APPL_pfmt ;
51
+CONST int MM_UTIL.1 | MM_UTIL_pfmt ;
52
+CONST int MM_OPSYS.1 | MM_OPSYS_pfmt ;
53
 
54
+FUNC int pfmt ( FILE *, long, char *, ... ) ;
55
+FUNC int lfmt ( FILE *, long, char *, ... ) ;
56
+FUNC int vpfmt ( FILE *, long, char *, va_list ) ;
57
+FUNC int vlfmt ( FILE *, long, char *, va_list ) ;
58
+FUNC char *setcat ( const char * ) ;
59
+FUNC int setlabel ( const char * ) ;
60
 
61
+ENDIF