mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-26 04:12:34 +01:00
22 lines
523 B
C
22 lines
523 B
C
#ifndef LIBPRESS_H
|
|
#define LIBPRESS_H
|
|
|
|
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern void DecDCTReset(int mode);
|
|
extern int DecDCTBufSize(u_long *bs);
|
|
extern void DecDCTvlc(u_long *bs, u_long *buf);
|
|
extern void DecDCTin(u_long *buf, int mode);
|
|
extern void DecDCTout(u_long *buf, int size);
|
|
extern int DecDCTinSync( int mode) ;
|
|
extern int DecDCToutSync( int mode) ;
|
|
|
|
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|