summaryrefslogtreecommitdiffstats
path: root/src/windows/ntsecapitest.pl
blob: c5306ea8d183789a760d8a26d13ef2c00d997131 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!perl -w


$filename = "ntsecapitest.i";
$string = "VISTA_SDK_VERSION";

if (system("grep $string $filename")) {
    print "$string not found; deleting $filename.\n";
    system("rm $filename");
    }

exit(0);