1/*******************************************************************************
2**+--------------------------------------------------------------------------+**
3**|                                                                          |**
4**| Copyright 1998-2008 Texas Instruments, Inc. - http://www.ti.com/         |**
5**|                                                                          |**
6**| Licensed under the Apache License, Version 2.0 (the "License");          |**
7**| you may not use this file except in compliance with the License.         |**
8**| You may obtain a copy of the License at                                  |**
9**|                                                                          |**
10**|     http://www.apache.org/licenses/LICENSE-2.0                           |**
11**|                                                                          |**
12**| Unless required by applicable law or agreed to in writing, software      |**
13**| distributed under the License is distributed on an "AS IS" BASIS,        |**
14**| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |**
15**| See the License for the specific language governing permissions and      |**
16**| limitations under the License.                                           |**
17**|                                                                          |**
18**+--------------------------------------------------------------------------+**
19*******************************************************************************/
20
21#ifndef TICON_H
22#define TICON_H
23#include <stdio.h>
24#include <string.h>
25
26#include "osTIType.h"
27#include "cli_cu_common.h"
28
29#ifndef IFNAMSIZ
30#define	IFNAMSIZ	16
31#endif
32
33extern 	char 	g_drv_name[IFNAMSIZ + 1];
34IMPORT_TI_API extern TI_HANDLE 	g_id_adapter; //TRS:MEB support usage of DLL
35
36#ifdef _WINDOWS
37#endif
38/*int iw_sockets_open(void); */
39
40
41int console_printf_terminal(const char *arg_list ,...);
42
43#ifndef _WINDOWS
44	int console_send_buffer_to_host(tiUINT8 module_inedx, tiUINT8 *buffer, tiUINT16 length);
45#endif /* __LINUX__ */
46
47#endif /* #define TICON_H */
48