source: svn/newcon3bcm2_21bu/dst/dmw/src/psi/DMW_PsiLinkedList.h

Last change on this file was 76, checked in by megakiss, 10 years ago

1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함

  • Property svn:executable set to *
File size: 843 bytes
Line 
1/*
2        DMW_PsiLinkedList.h
3
4        DST TV MW PSI Scan Module
5
6        PSI Database entry linked list implementation
7
8        Copyright 2006~2010 Digital STREAM Technology, Inc.
9        All Rights Reserved
10
11*/
12
13
14#ifndef __DMW_PSI_LINKEDLIST_H__
15#define __DMW_PSI_LINKEDLIST_H__
16
17
18#include "DMW_PsiTypes.h"
19
20#include "DMW_PsiAPI.h"
21
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27
28#if COMMENT
29____LinkedList____(){}
30#endif
31
32
33S_PSIM_CHINFO *PSI_FirstChInfo(void);
34S_PSIM_CHINFO *PSI_SearchChInfo(S_PSIM_CHINFO *start, int id);
35S_PSIM_CHINFO *PSI_GetChInfo(int id);
36S_PSIM_CHINFO *PSI_NextChInfo(S_PSIM_CHINFO *cur);
37void PSI_InsertChInfo(S_PSIM_CHINFO *chInfo);
38void PSI_RemoveChInfo(S_PSIM_CHINFO *chInfo);
39S_PSIM_CHINFO *PSI_NewChInfo(int id);
40
41
42#ifdef __cplusplus
43} /* extern "C" */
44#endif
45
46
47#endif /* __DMW_PSI_LINKEDLIST_H__ */
48
Note: See TracBrowser for help on using the repository browser.