summaryrefslogtreecommitdiff
path: root/bin/MakeProjectCreator/modules/GUID.pm
diff options
context:
space:
mode:
Diffstat (limited to 'bin/MakeProjectCreator/modules/GUID.pm')
-rw-r--r--bin/MakeProjectCreator/modules/GUID.pm58
1 files changed, 0 insertions, 58 deletions
diff --git a/bin/MakeProjectCreator/modules/GUID.pm b/bin/MakeProjectCreator/modules/GUID.pm
deleted file mode 100644
index 015db9c2a47..00000000000
--- a/bin/MakeProjectCreator/modules/GUID.pm
+++ /dev/null
@@ -1,58 +0,0 @@
-package GUID;
-
-# ************************************************************
-# Description : Generate GUID's for VC7 projects and workspaces
-# Author : Chad Elliott
-# Create Date : 5/14/2002
-# ************************************************************
-
-# ************************************************************
-# Pragmas
-# ************************************************************
-
-use strict;
-
-# ************************************************************
-# Subroutine Section
-# ************************************************************
-
-sub new {
- my($class) = shift;
- my($self) = bless {
- }, $class;
- return $self;
-}
-
-
-sub generate {
- my($self) = shift;
- my($out) = shift;
- my($in) = shift;
- my($cwd) = shift;
- my($chash) = $self->hash($cwd);
- my($nhash) = $self->hash($out);
- my($ihash) = $self->hash($in);
- my($val) = 0xfeca1bad;
-
- return sprintf("%08X-%04X-%04X-%04X-%04X%08X",
- $nhash, ($val >> 16) & 0xffff, ($val & 0xffff),
- ($ihash >> 16) & 0xffff, $ihash & 0xffff, $chash);
-}
-
-
-sub hash {
- my($self) = shift;
- my($str) = shift;
- my($value) = 0;
-
- if (defined $str) {
- my($length) = length($str);
- for(my $i = 0; $i < $length; $i++) {
- $value = ($value << 4) ^ ($value >> 28) ^ ord(substr($str, $i, 1));
- }
- }
-
- return $value;
-}
-
-1;