use warnings;
use base qw(Project);
+no warnings qw(redefine); ## no critic
+
sub _new
{
my $classname = shift;
use warnings;
use base qw(MSBuildProject);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(MSBuildProject);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(VC2012Project);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(VC2012Project);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(VC2012Project);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
if ($filter eq "LIBOBJS")
{
+ no warnings qw(once);
if (grep(/$p/, @main::pgportfiles, @main::pgcommonfiles)
== 1)
{
use warnings;
use VSObjectFactory;
+no warnings qw(redefine); ## no critic
+
sub _new
{
my $classname = shift;
use warnings;
use base qw(Solution);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(Solution);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(Solution);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(Solution);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(Solution);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(Solution);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(Solution);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(Project);
+no warnings qw(redefine); ## no critic
+
sub _new
{
my $classname = shift;
use warnings;
use base qw(VCBuildProject);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
use warnings;
use base qw(VCBuildProject);
+no warnings qw(redefine); ## no critic
+
sub new
{
my $classname = shift;
@ISA = qw(Exporter);
@EXPORT = qw(CreateSolution CreateProject DetermineVisualStudioVersion);
+no warnings qw(redefine); ## no critic
+
sub CreateSolution
{
my $visualStudioVersion = shift;
--- /dev/null
+
+src/tools/msvc/dummylib
+
+This directory contains just enough of a dummy library to allow checking of
+the programs in src/tools/msvc and src/tools/win32tzlist.pl with
+perl -cw, even on machines that lack the Win32 perl infrastructure.
+
+invoke via:
+
+PERL5LIB=src/tools/msvc/dummylib perl -cw $file
+
+This is the only use that should be made of this directory. Attempting actually
+running of any programs using this library will result in a lot of grief.
--- /dev/null
+package Win32;
+use strict;
+use warnings;
+1;
--- /dev/null
+package Win32::Registry;
+
+use strict;
+use warnings;
+
+use vars qw($HKEY_LOCAL_MACHINE);
+
+use Exporter ();
+our (@EXPORT,@ISA);
+@ISA = qw(Exporter);
+@EXPORT = qw($HKEY_LOCAL_MACHINE);
+
+1;
--- /dev/null
+package Win32API::File;
+
+use strict;
+use warnings;
+
+use constant { SEM_FAILCRITICALERRORS => 1, SEM_NOGPFAULTERRORBOX => 2 };
+sub SetErrormode {};
+use Exporter;
+our(@ISA,@EXPORT_OK,%EXPORT_TAGS);
+@ISA = qw(Exporter);
+@EXPORT_OK = qw(SetErrorMode SEM_FAILCRITICALERRORS SEM_NOGPFAULTERRORBOX);
+%EXPORT_TAGS = (SEM_ => [qw(SEM_FAILCRITICALERRORS SEM_NOGPFAULTERRORBOX)]);
+
+1;