mirror of
https://github.com/samba-team/samba.git
synced 2025-11-07 12:23:51 +03:00
17 lines
316 B
Perl
17 lines
316 B
Perl
###################################################
|
|
# package to parse IDL files and generate code for
|
|
# rpc functions in Samba
|
|
# Copyright tridge@samba.org 2000-2003
|
|
# Copyright jelmer@samba.org 2005
|
|
# released under the GNU GPL
|
|
|
|
package Parse::Pidl;
|
|
|
|
use strict;
|
|
|
|
use vars qw ( $VERSION );
|
|
|
|
$VERSION = '0.02';
|
|
|
|
1;
|