|
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 |
|---|
| 24 | extern "C" { |
|---|
| 25 | #endif |
|---|
| 26 | |
|---|
| 27 | |
|---|
| 28 | #if COMMENT |
|---|
| 29 | ____LinkedList____(){} |
|---|
| 30 | #endif |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | S_PSIM_CHINFO *PSI_FirstChInfo(void); |
|---|
| 34 | S_PSIM_CHINFO *PSI_SearchChInfo(S_PSIM_CHINFO *start, int id); |
|---|
| 35 | S_PSIM_CHINFO *PSI_GetChInfo(int id); |
|---|
| 36 | S_PSIM_CHINFO *PSI_NextChInfo(S_PSIM_CHINFO *cur); |
|---|
| 37 | void PSI_InsertChInfo(S_PSIM_CHINFO *chInfo); |
|---|
| 38 | void PSI_RemoveChInfo(S_PSIM_CHINFO *chInfo); |
|---|
| 39 | S_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.