-
Notifications
You must be signed in to change notification settings - Fork 447
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8a7fd6
commit 031ac7d
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
#ifndef _CCX_DECODERS_708_ENCODING_H_ | ||
#define _CCX_DECODERS_708_ENCODING_H_ | ||
|
||
#define CCX_DTVCC_MUSICAL_NOTE_CHAR 9836 // Unicode Character 'BEAMED SIXTEENTH NOTES' | ||
#define CCX_DTVCC_MUSICAL_NOTE_CHAR 9836 // Unicode Character 'BEAMED SIXTEENTH NOTES' | ||
|
||
#ifndef DISABLE_RUST | ||
extern unsigned char dtvcc_get_internal_from_G0(unsigned char g0_char); | ||
extern unsigned char dtvcc_get_internal_from_G1(unsigned char g1_char); | ||
extern unsigned char dtvcc_get_internal_from_G2(unsigned char g2_char); | ||
extern unsigned char dtvcc_get_internal_from_G3(unsigned char g3_char); | ||
#else | ||
unsigned char dtvcc_get_internal_from_G0(unsigned char g0_char); | ||
unsigned char dtvcc_get_internal_from_G1(unsigned char g1_char); | ||
unsigned char dtvcc_get_internal_from_G2(unsigned char g2_char); | ||
unsigned char dtvcc_get_internal_from_G3(unsigned char g3_char); | ||
#endif | ||
|
||
#endif /*_CCX_DECODERS_708_ENCODING_H_*/ |