line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Linux::DVB::DVBT::Constants ; |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
=head1 NAME |
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
Linux::DVB::DVBT::Constants - DVBT constant settings |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 SYNOPSIS |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
use Linux::DVB::DVBT::Constants ; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 DESCRIPTION |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
This module contains a single global HASH which contains useful constants used both by the XS module (and all the C code) and by the Perl. |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
The HASH is populated by the XS startup. |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=cut |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
|
21
|
10
|
|
|
10
|
|
58
|
use strict ; |
|
10
|
|
|
|
|
21
|
|
|
10
|
|
|
|
|
977
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
our $VERSION = '1.00' ; |
24
|
|
|
|
|
|
|
our $DEBUG = 0 ; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
#============================================================================================ |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 GLOBALS |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=over 4 |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=cut |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
our %CONSTANTS = () ; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
# ============================================================================================ |
38
|
|
|
|
|
|
|
# END OF PACKAGE |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=back |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
=cut |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
1; |
45
|
|
|
|
|
|
|
|