1 |
106 |
markom |
/******************************************************************************
|
2 |
|
|
* Copyright 1991 Advanced Micro Devices, Inc.
|
3 |
|
|
*
|
4 |
|
|
* This software is the property of Advanced Micro Devices, Inc (AMD) which
|
5 |
|
|
* specifically grants the user the right to modify, use and distribute this
|
6 |
|
|
* software provided this notice is not removed or altered. All other rights
|
7 |
|
|
* are reserved by AMD.
|
8 |
|
|
*
|
9 |
|
|
* AMD MAKES NO WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, WITH REGARD TO THIS
|
10 |
|
|
* SOFTWARE. IN NO EVENT SHALL AMD BE LIABLE FOR INCIDENTAL OR CONSEQUENTIAL
|
11 |
|
|
* DAMAGES IN CONNECTION WITH OR ARISING FROM THE FURNISHING, PERFORMANCE, OR
|
12 |
|
|
* USE OF THIS SOFTWARE.
|
13 |
|
|
*
|
14 |
|
|
* So that all may benefit from your experience, please report any problems
|
15 |
|
|
* or suggestions about this software to the 29K Technical Support Center at
|
16 |
|
|
* 800-29-29-AMD (800-292-9263) in the USA, or 0800-89-1131 in the UK, or
|
17 |
|
|
* 0031-11-1129 in Japan, toll free. The direct dial number is 512-462-4118.
|
18 |
|
|
*
|
19 |
|
|
* Advanced Micro Devices, Inc.
|
20 |
|
|
* 29K Support Products
|
21 |
|
|
* Mail Stop 573
|
22 |
|
|
* 5900 E. Ben White Blvd.
|
23 |
|
|
* Austin, TX 78741
|
24 |
|
|
* 800-292-9263
|
25 |
|
|
*****************************************************************************
|
26 |
|
|
* NAME @(#)tip_test.c 1.1 91/07/24 Daniel Mann
|
27 |
|
|
*
|
28 |
|
|
* This module is used for testing of TIP services.
|
29 |
|
|
********************************************************************** HISTORY
|
30 |
|
|
*/
|
31 |
|
|
#include <stdio.h>
|
32 |
|
|
#include "udiproc.h"
|
33 |
|
|
|
34 |
|
|
UDIError UDIConnect() {return;}
|
35 |
|
|
UDIError UDIDisconnect() {return;}
|
36 |
|
|
UDIError UDISetCurrentConnection() {return;}
|
37 |
|
|
UDIError UDICapabilities() {return;}
|
38 |
|
|
UDIError UDIEnumerateTIPs() {return;}
|
39 |
|
|
UDIError UDIGetErrorMsg() {return;}
|
40 |
|
|
UDIError UDIGetTargetConfig() {return;}
|
41 |
|
|
UDIError UDICreateProcess() {return;}
|
42 |
|
|
UDIError UDISetCurrentProcess() {return;}
|
43 |
|
|
UDIError UDIDestroyProcess() {return;}
|
44 |
|
|
UDIError UDIInitializeProcess() {return;}
|
45 |
|
|
UDIError UDIRead() {return;}
|
46 |
|
|
UDIError UDIWrite() {return;}
|
47 |
|
|
UDIError UDICopy() {return;}
|
48 |
|
|
UDIError UDIExecute() {return;}
|
49 |
|
|
UDIError UDIStep() {return;}
|
50 |
|
|
UDIError UDIStop() {return;}
|
51 |
|
|
UDIError UDIWait() {return;}
|
52 |
|
|
UDIError UDISetBreakpoint() {return;}
|
53 |
|
|
UDIError UDIQueryBreakpoint() {return;}
|
54 |
|
|
UDIError UDIClearBreakpoint() {return;}
|
55 |
|
|
UDIError UDIGetStdout() {return;}
|
56 |
|
|
UDIError UDIGetStderr() {return;}
|
57 |
|
|
UDIError UDIPutStdin() {return;}
|
58 |
|
|
UDIError UDIStdinMode() {return;}
|
59 |
|
|
UDIError UDIPutTrans() {return;}
|
60 |
|
|
UDIError UDIGetTrans() {return;}
|
61 |
|
|
UDIError UDITransMode() {return;}
|