Test zlib on linux
[MPC.git] / modules / VC71ProjectCreator.pm
blob5c8d9e5b4cea1750e941a992cae45cd362a3d7d2
1 package VC71ProjectCreator;
3 # ************************************************************
4 # Description : A VC7.1 Project Creator
5 # Author : Chad Elliott
6 # Create Date : 4/17/2003
7 # ************************************************************
9 # ************************************************************
10 # Pragmas
11 # ************************************************************
13 use strict;
15 use VC7ProjectCreator;
17 use vars qw(@ISA);
18 @ISA = qw(VC7ProjectCreator);
20 # ************************************************************
21 # Data Section
22 # ************************************************************
24 my %config = ('vcversion' => '7.10',
25 'forloopscope' => 'TRUE',
28 # ************************************************************
29 # Subroutine Section
30 # ************************************************************
32 sub get_configurable {
33 my($self, $name) = @_;
34 return $config{$name};