• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 /*--------------------------------------------------------------------------*/
22 /* Module:		TI_AdapterGWSI.h*/
23 /**/
24 /* Purpose:		*/
25 /**/
26 /*--------------------------------------------------------------------------*/
27 
28 #ifndef TI_ADAPTER_GWSI_H
29 #define TI_ADAPTER_GWSI_H
30 
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34 
35 /******************************************************************************
36 
37     Name:   TI_GWSICommand
38     Desc:
39     Params:	hAdapter - The Adapter handle returned by TI_AdapterInit().
40             pGWSICommand - .
41     Return:	TI_RESULT_OK on success. Any other value indicates an error.
42 
43 ******************************************************************************/
44 tiINT32     TI_GWSICommand                  (TI_HANDLE  hAdapter,
45                                              tiUINT32* pGWSICommand );
46 
47 /******************************************************************************
48 
49     Name:   TI_GWSIInitialize
50     Desc:
51     Params:	hAdapter - The Adapter handle returned by TI_AdapterInit().
52             pGWSICommand - .
53     Return:	TI_RESULT_OK on success. Any other value indicates an error.
54 
55 ******************************************************************************/
56 tiINT32     TI_GWSIInitialize               (TI_HANDLE  hAdapter,
57                                              tiUINT32* pGWSICommand );
58 
59 /******************************************************************************
60 
61     Name:   TI_GWSIConfig
62     Desc:
63     Params:	hAdapter - The Adapter handle returned by TI_AdapterInit().
64             pGWSICommand - .
65     Return:	TI_RESULT_OK on success. Any other value indicates an error.
66 
67 ******************************************************************************/
68 tiINT32     TI_GWSIConfig                   (TI_HANDLE  hAdapter,
69                                              tiUINT32* pGWSICommand );
70 
71 /******************************************************************************
72 
73     Name:   TI_GWSIGetInitTable
74     Desc:
75     Params:	hAdapter - The Adapter handle returned by TI_AdapterInit().
76             pGWSICommand - .
77     Return:	TI_RESULT_OK on success. Any other value indicates an error.
78 
79 ******************************************************************************/
80 tiINT32     TI_GWSIGetInitTable             (TI_HANDLE  hAdapter,
81                                              tiUINT32* pGWSICommand );
82 
83 /******************************************************************************
84 
85     Name:   TI_GWSIRelease
86     Desc:
87     Params:	hAdapter - The Adapter handle returned by TI_AdapterInit().
88             pGWSICommand - .
89     Return:	TI_RESULT_OK on success. Any other value indicates an error.
90 
91 ******************************************************************************/
92 tiINT32     TI_GWSIRelease					(TI_HANDLE  hAdapter,
93                                              tiUINT32* pGWSICommand );
94 
95 #ifdef __cplusplus
96 }
97 #endif
98 
99 #endif /* TI_ADAPTER_GWSI_H*/
100