blob: c60fc59aba5ee100be3795f667eb7af19ba55583 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
###################################################
# 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;
|