mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
59b13f9a1d
- Update the README - Allow building the docs stand-alone (This used to be commit b56084ce251ab7a35dd1422f38de258e8e1e1477)
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.01';
|
|
|
|
1;
|