source: svn/trunk/zas_dstar/hal/include/dsthaltest.h @ 2

Last change on this file since 2 was 2, checked in by phkim, 11 years ago

1.phkim

  1. revision copy newcon3sk r27
File size: 1.0 KB
Line 
1/****************************************************************************
2 * Copyright (c) 2004 DST Technologies Inc.  All Rights Reserved.
3 *
4 * Module:      dsthhalvideo.h
5 *
6 * Description: DST HAL TEST Interface function definition
7 *                              PSI,FE
8 *           
9 *
10 * notes: jfet0525
11 *
12 ***************************************************************************/
13
14#if !defined (_DSTHALTEST_H_)
15#define _DSTHALTEST_H_
16
17#include "ati_defs.h"
18#include "dsthalerror.h"
19
20#if defined __cplusplus
21extern "C" {
22#endif
23
24typedef void (DST_FE_CALLBACK)(DS_U32 feHandle,
25                                                           DS_U32 eventSource,
26                                                           DS_U32 userContext);
27
28/*
29**      PUBLIC FUNCTIONs for DST TEST (psi,fe) -----------
30*/
31/*      PSI public function*/
32DHL_RESULT DHL_PSI_Initialize(void);
33DHL_RESULT DHL_PSI_Start(void);
34DHL_RESULT DHL_PSI_Stop(void);
35
36/*      FE public function      */
37DHL_RESULT DHL_FE_Initialize(DST_FE_CALLBACK *pCallBackFn);
38DHL_RESULT DHL_FE_Start2(void);
39DHL_RESULT DHL_FE_Stop2(void);
40DHL_RESULT DHL_FE_Tune(DS_U32 uChNo);
41
42#if defined __cplusplus
43}
44#endif
45
46#endif /* _DSTHALTEST_H_ */
Note: See TracBrowser for help on using the repository browser.