close Warning: Can't use blame annotator:
No changeset 2 in the repository

source: svn/zasc/app/DST_BitBuffer.h @ 66

Last change on this file since 66 was 66, checked in by megakiss, 11 years ago

키패드 기능 연결

전원키 누르고 리모콘 누르면 학습
CH+ 간격 1초 증가 MAX:15
CH- 간격 1초 감소 MIN :1

File size: 668 bytes
RevLine 
1#ifndef __DST_BIT_BUFFER_H__
2#define __DST_BIT_BUFFER_H__
3
4#include "DST_Common.h"
5
6/*typedef struct bitBuffer bitBuffer_t, *bitBufferPtr_t;*/
7typedef struct bitBuffer bitBuffer_t;
8typedef struct bitBuffer  * bitBufferPtr_t;
9
10/* API */
11int bitBufferCreate ( bitBufferPtr_t *instance, DS_U8 *buffer, DS_U32 bufSize);
12int bitBufferDestroy ( bitBufferPtr_t instance);
13DS_U32 bitBufferGetBits (bitBufferPtr_t instance, DS_U8 numberOfBits);
14void bitBufferSkipBits (bitBufferPtr_t instance, DS_U16 numberOfBits);
15DS_U8* bitBufferGetBytePointer (bitBufferPtr_t instance);
16bool bitBufferCheckError (bitBufferPtr_t instance);\
17
18#endif // __DST_BIT_BUFFER_H__
Note: See TracBrowser for help on using the repository browser.