samba3-srv.pl

来自「samba最新软件」· PL 代码 · 共 19 行

PL
19
字号
#!/usr/bin/perl# (C) 2008 Jelmer Vernooij <jelmer@samba.org># Published under the GNU General Public Licenseuse strict;use warnings;use Test::More tests => 1;use FindBin qw($RealBin);use lib "$RealBin";use Util;use Parse::Pidl::Util qw(MyDumper has_property);use Parse::Pidl::Samba3::ServerNDR qw(DeclLevel);my $l = { TYPE => "DATA", DATA_TYPE => "uint32" }; my $e = { FILE => "foo", LINE => 0, PROPERTIES => { }, TYPE => "uint32",          LEVELS => [ $l ] };is("uint32_t", DeclLevel($e, 0));

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?