| Revision: | 1.1 |
| Committed: | Sat Dec 1 13:53:10 2007 UTC (18 years, 9 months ago) by root |
| Branch: | MAIN |
| Log Message: | *** empty log message *** |
| # | Content |
|---|---|
| 1 | =head1 NAME |
| 2 | |
| 3 | EV::ADNS - |
| 4 | |
| 5 | =head1 SYNOPSIS |
| 6 | |
| 7 | use EV::ADNS; |
| 8 | |
| 9 | =head1 DESCRIPTION |
| 10 | |
| 11 | =cut |
| 12 | |
| 13 | package EV::ADNS; |
| 14 | |
| 15 | use Carp (); |
| 16 | use EV (); |
| 17 | |
| 18 | BEGIN { |
| 19 | $VERSION = '1.0'; |
| 20 | |
| 21 | require XSLoader; |
| 22 | XSLoader::load (EV::ADNS, $VERSION); |
| 23 | } |
| 24 | |
| 25 | =cut |
| 26 | |
| 27 | =head1 SEE ALSO |
| 28 | |
| 29 | L<EV>. |
| 30 | |
| 31 | =head1 AUTHOR |
| 32 | |
| 33 | Marc Lehmann <schmorp@schmorp.de> |
| 34 | http://home.schmorp.de/ |
| 35 | |
| 36 | =cut |
| 37 | |
| 38 | 1 |
| 39 |