[14] | 1 | /**CHeaderFile***************************************************************** |
---|
| 2 | |
---|
| 3 | FileName [tst.h] |
---|
| 4 | |
---|
| 5 | PackageName [tst] |
---|
| 6 | |
---|
| 7 | Synopsis [Test package illustrating VIS conventions.] |
---|
| 8 | |
---|
| 9 | Description [This is a test package illustrating how to create a package in |
---|
| 10 | VIS. It shows how to create commands, and illustrates naming conventions.] |
---|
| 11 | |
---|
| 12 | Author [Originated from SIS.] |
---|
| 13 | |
---|
| 14 | Copyright [Copyright (c) 1994-1996 The Regents of the Univ. of California. |
---|
| 15 | All rights reserved. |
---|
| 16 | |
---|
| 17 | Permission is hereby granted, without written agreement and without license |
---|
| 18 | or royalty fees, to use, copy, modify, and distribute this software and its |
---|
| 19 | documentation for any purpose, provided that the above copyright notice and |
---|
| 20 | the following two paragraphs appear in all copies of this software. |
---|
| 21 | |
---|
| 22 | IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR |
---|
| 23 | DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT |
---|
| 24 | OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF |
---|
| 25 | CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
---|
| 26 | |
---|
| 27 | THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, |
---|
| 28 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
---|
| 29 | FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS ON AN |
---|
| 30 | "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO PROVIDE |
---|
| 31 | MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.] |
---|
| 32 | |
---|
| 33 | Revision [$Id: tst.h,v 1.2 2002/09/09 00:12:06 fabio Exp $] |
---|
| 34 | |
---|
| 35 | ******************************************************************************/ |
---|
| 36 | |
---|
| 37 | #ifndef _TST |
---|
| 38 | #define _TST |
---|
| 39 | |
---|
| 40 | /*---------------------------------------------------------------------------*/ |
---|
| 41 | /* Nested includes */ |
---|
| 42 | /*---------------------------------------------------------------------------*/ |
---|
| 43 | #include "vm.h" |
---|
| 44 | |
---|
| 45 | |
---|
| 46 | /*---------------------------------------------------------------------------*/ |
---|
| 47 | /* Constant declarations */ |
---|
| 48 | /*---------------------------------------------------------------------------*/ |
---|
| 49 | |
---|
| 50 | |
---|
| 51 | /*---------------------------------------------------------------------------*/ |
---|
| 52 | /* Structure declarations */ |
---|
| 53 | /*---------------------------------------------------------------------------*/ |
---|
| 54 | |
---|
| 55 | |
---|
| 56 | /*---------------------------------------------------------------------------*/ |
---|
| 57 | /* Type declarations */ |
---|
| 58 | /*---------------------------------------------------------------------------*/ |
---|
| 59 | |
---|
| 60 | |
---|
| 61 | /*---------------------------------------------------------------------------*/ |
---|
| 62 | /* Variable declarations */ |
---|
| 63 | /*---------------------------------------------------------------------------*/ |
---|
| 64 | |
---|
| 65 | |
---|
| 66 | /*---------------------------------------------------------------------------*/ |
---|
| 67 | /* Macro declarations */ |
---|
| 68 | /*---------------------------------------------------------------------------*/ |
---|
| 69 | |
---|
| 70 | |
---|
| 71 | /**AutomaticStart*************************************************************/ |
---|
| 72 | |
---|
| 73 | /*---------------------------------------------------------------------------*/ |
---|
| 74 | /* Function prototypes */ |
---|
| 75 | /*---------------------------------------------------------------------------*/ |
---|
| 76 | |
---|
| 77 | EXTERN void Tst_Init(void); |
---|
| 78 | EXTERN void Tst_End(void); |
---|
| 79 | |
---|
| 80 | /**AutomaticEnd***************************************************************/ |
---|
| 81 | |
---|
| 82 | #endif /* _TST */ |
---|