Mirroring got broken around the merge from branches/2.1, although I'm 
not yet sure how.  This catches up to "authoritative" content across the 
board, while I figure out what broke.



git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@8234 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/plugins/ie/installer/README.txt b/plugins/ie/installer/README.txt
index 2c8094e..8517837 100644
--- a/plugins/ie/installer/README.txt
+++ b/plugins/ie/installer/README.txt
@@ -1,11 +1,11 @@
-This directory contains the source code for the Windows installer. A new installer should

-be built using the build script every time oophm.dll is replaced.

-

-The build script will only work on a Windows system with WIX installed:

-http://wix.sourceforge.net/

-

-

-Files contained in this directory:

-installer.wxs.xml - the WIX script used to generate the installer

-

+This directory contains the source code for the Windows installer. A new installer should
+be built using the build script every time oophm.dll is replaced.
+
+The build script will only work on a Windows system with WIX installed:
+http://wix.sourceforge.net/
+
+
+Files contained in this directory:
+installer.wxs.xml - the WIX script used to generate the installer
+
 build.xml - the ant build script
\ No newline at end of file
diff --git a/plugins/ie/installer/installer.wxs.xml b/plugins/ie/installer/installer.wxs.xml
index 5785323..03a5357 100644
--- a/plugins/ie/installer/installer.wxs.xml
+++ b/plugins/ie/installer/installer.wxs.xml
@@ -1,166 +1,166 @@
-<?xml version='1.0' encoding='windows-1252'?>

-<Wix

-  xmlns='http://schemas.microsoft.com/wix/2006/wi'>

-

-  <!-- Variables. -->

-  <?define appName = "Google Web Toolkit Developer Plugin for IE" ?>

-  <?define upgradeCode = "9a5e649a-ec63-4c7d-99bf-75adb345e7e5" ?>

-  <?define updateRegKey = "SOFTWARE\Google\Update\Clients\{$(var.upgradeCode)}" ?>

-  <?define gwtRegKey = "SOFTWARE\Google\Google Web Toolkit\Installer" ?>

-

-  <!--

-    The main product to install. We generate a new GUID (*) on each

-    compile to ensure that windows installer completely removes the old

-    version and reinstalls the new version without complaining.

-  -->

-  <Product

-    Name='$(var.appName)'

-    Id='*'

-    UpgradeCode='$(var.upgradeCode)'

-    Language='1033'

-    Codepage='1252'

-    Version='$(var.version)'

-    Manufacturer='Google'>

-

-    <Package

-      Id='*'

-      Keywords='Installer'

-      Description='$(var.appName) Installer'

-      Manufacturer='Google'

-      InstallPrivileges='limited'

-      InstallerVersion='100'

-      Languages='1033'

-      Compressed='yes'

-      SummaryCodepage='1252' />

-    <Media

-      Id='1'

-      Cabinet='product.cab'

-      EmbedCab='yes' />

-

-    <!-- Suppress reboot prompts. -->

-    <Property Id='REBOOT'>ReallySuppress</Property>

-

-    <!-- Install for current user. -->

-    <Property Id="ALLUSERS" Secure="yes" />

-

-    <!-- Remove old version completely when upgrading.  -->

-    <Upgrade

-      Id='$(var.upgradeCode)'>

-      <UpgradeVersion

-        OnlyDetect='no'

-        Property='PREVIOUSFOUND'

-        Minimum='0.0.0.0'

-        IncludeMinimum='yes'

-        RemoveFeatures='all' />

-    </Upgrade>

-    <InstallExecuteSequence>

-      <LaunchConditions

-        After='AppSearch' />

-      <RemoveExistingProducts

-        After='InstallValidate' />

-    </InstallExecuteSequence>

-

-    <!-- Define the install directory. -->

-    <Directory

-      Id='TARGETDIR'

-      Name='SourceDir'>

-      <Directory

-        Id='LocalAppDataFolder'

-        Name='AppData'>

-        <Directory

-          Id='GoogleDir'

-          Name='Google'>

-          <Component Id="RemoveGoogleDir" Guid="*" DiskId="1">

-            <CreateFolder/>

-            <RemoveFolder Id="RemoveGoogleDirFolder" On="uninstall" />

-            <RegistryKey Root="HKCU" Key="$(var.gwtRegKey)" Action="createAndRemoveOnUninstall">

-              <RegistryValue Name="RemoveGoogleDirFolder" Value="" Type="string" KeyPath="yes"/>

-            </RegistryKey>

-          </Component>

-          <Directory

-            Id='GoogleWebToolkitDir'

-            Name='Google Web Toolkit'>

-            <Component Id="RemoveGoogleWebToolkitDir" Guid="*" DiskId="1">

-              <CreateFolder/>

-              <RemoveFolder Id="RemoveGoogleWebToolkitDirFolder" On="uninstall" />

-              <RegistryKey Root="HKCU" Key="$(var.gwtRegKey)" Action="createAndRemoveOnUninstall">

-                <RegistryValue Name="RemoveGoogleWebToolkitDirFolder" Value="" Type="string" KeyPath="yes"/>

-              </RegistryKey>

-            </Component>

-            <Directory

-              Id='DeveloperPluginDir'

-              Name='Developer Plugin'>

-              <Component Id="RemoveDeveloperPluginDir" Guid="*" DiskId="1">

-                <CreateFolder/>

-                <RemoveFolder Id="RemoveDeveloperPluginDirFolder" On="uninstall" />

-                <RegistryKey Root="HKCU" Key="$(var.gwtRegKey)" Action="createAndRemoveOnUninstall">

-                  <RegistryValue Name="RemoveDeveloperPluginDirFolder" Value="" Type="string" KeyPath="yes"/>

-                </RegistryKey>

-              </Component>

-              <Directory

-                Id='INSTALLDIR'

-                Name='IE'>

-                <Component Id="RemoveInstallDir" Guid="*" DiskId="1">

-                  <CreateFolder/>

-                  <RemoveFolder Id="RemoveInstallerDirFolder" On="uninstall" />

-                  <RegistryKey Root="HKCU" Key="$(var.gwtRegKey)" Action="createAndRemoveOnUninstall">

-                    <RegistryValue Name="RemoveInstallerDirFolder" Value="" Type="string" KeyPath="yes"/>

-                  </RegistryKey>

-                </Component>

-              </Directory>

-            </Directory>

-          </Directory>

-        </Directory>

-      </Directory>

-    </Directory>

-

-    <!-- Set some registry values. -->

-    <Component

-      Id='registryValues'

-      Directory='INSTALLDIR'

-      Guid='*'>

-      <RegistryKey

-        Root='HKCU'

-        Action='createAndRemoveOnUninstall'

-        Key='$(var.updateRegKey)'>

-        <RegistryValue

-          Name='pv'

-          Value='$(var.version)'

-          Type='string' />

-        <RegistryValue

-          Name='name'

-          Value='$(var.appName)'

-          Type='string' />

-        <RegistryValue

-          Name='lang'

-          Value='en'

-          Type='string' />

-      </RegistryKey>

-    </Component>

-

-    <!-- Define the features to install. -->

-    <Feature

-      Id='CompleteFeature'

-      Display='expand'

-      Level='1'

-      Absent='disallow'>

-      <!--

-        Loaded from oophm.wxs.xml, which is generated by the build

-        script.

-      -->

-      <ComponentRef

-        Id='RemoveGoogleDir' />

-      <ComponentRef

-        Id='RemoveGoogleWebToolkitDir' />

-      <ComponentRef

-        Id='RemoveDeveloperPluginDir' />

-      <ComponentRef

-        Id='RemoveInstallDir' />

-      <ComponentGroupRef

-        Id='oophmDll' />

-      <ComponentRef

-        Id='registryValues' />

-    </Feature>

-

-  </Product>

-</Wix>

+<?xml version='1.0' encoding='windows-1252'?>
+<Wix
+  xmlns='http://schemas.microsoft.com/wix/2006/wi'>
+
+  <!-- Variables. -->
+  <?define appName = "Google Web Toolkit Developer Plugin for IE" ?>
+  <?define upgradeCode = "9a5e649a-ec63-4c7d-99bf-75adb345e7e5" ?>
+  <?define updateRegKey = "SOFTWARE\Google\Update\Clients\{$(var.upgradeCode)}" ?>
+  <?define gwtRegKey = "SOFTWARE\Google\Google Web Toolkit\Installer" ?>
+
+  <!--
+    The main product to install. We generate a new GUID (*) on each
+    compile to ensure that windows installer completely removes the old
+    version and reinstalls the new version without complaining.
+  -->
+  <Product
+    Name='$(var.appName)'
+    Id='*'
+    UpgradeCode='$(var.upgradeCode)'
+    Language='1033'
+    Codepage='1252'
+    Version='$(var.version)'
+    Manufacturer='Google'>
+
+    <Package
+      Id='*'
+      Keywords='Installer'
+      Description='$(var.appName) Installer'
+      Manufacturer='Google'
+      InstallPrivileges='limited'
+      InstallerVersion='100'
+      Languages='1033'
+      Compressed='yes'
+      SummaryCodepage='1252' />
+    <Media
+      Id='1'
+      Cabinet='product.cab'
+      EmbedCab='yes' />
+
+    <!-- Suppress reboot prompts. -->
+    <Property Id='REBOOT'>ReallySuppress</Property>
+
+    <!-- Install for current user. -->
+    <Property Id="ALLUSERS" Secure="yes" />
+
+    <!-- Remove old version completely when upgrading.  -->
+    <Upgrade
+      Id='$(var.upgradeCode)'>
+      <UpgradeVersion
+        OnlyDetect='no'
+        Property='PREVIOUSFOUND'
+        Minimum='0.0.0.0'
+        IncludeMinimum='yes'
+        RemoveFeatures='all' />
+    </Upgrade>
+    <InstallExecuteSequence>
+      <LaunchConditions
+        After='AppSearch' />
+      <RemoveExistingProducts
+        After='InstallValidate' />
+    </InstallExecuteSequence>
+
+    <!-- Define the install directory. -->
+    <Directory
+      Id='TARGETDIR'
+      Name='SourceDir'>
+      <Directory
+        Id='LocalAppDataFolder'
+        Name='AppData'>
+        <Directory
+          Id='GoogleDir'
+          Name='Google'>
+          <Component Id="RemoveGoogleDir" Guid="*" DiskId="1">
+            <CreateFolder/>
+            <RemoveFolder Id="RemoveGoogleDirFolder" On="uninstall" />
+            <RegistryKey Root="HKCU" Key="$(var.gwtRegKey)" Action="createAndRemoveOnUninstall">
+              <RegistryValue Name="RemoveGoogleDirFolder" Value="" Type="string" KeyPath="yes"/>
+            </RegistryKey>
+          </Component>
+          <Directory
+            Id='GoogleWebToolkitDir'
+            Name='Google Web Toolkit'>
+            <Component Id="RemoveGoogleWebToolkitDir" Guid="*" DiskId="1">
+              <CreateFolder/>
+              <RemoveFolder Id="RemoveGoogleWebToolkitDirFolder" On="uninstall" />
+              <RegistryKey Root="HKCU" Key="$(var.gwtRegKey)" Action="createAndRemoveOnUninstall">
+                <RegistryValue Name="RemoveGoogleWebToolkitDirFolder" Value="" Type="string" KeyPath="yes"/>
+              </RegistryKey>
+            </Component>
+            <Directory
+              Id='DeveloperPluginDir'
+              Name='Developer Plugin'>
+              <Component Id="RemoveDeveloperPluginDir" Guid="*" DiskId="1">
+                <CreateFolder/>
+                <RemoveFolder Id="RemoveDeveloperPluginDirFolder" On="uninstall" />
+                <RegistryKey Root="HKCU" Key="$(var.gwtRegKey)" Action="createAndRemoveOnUninstall">
+                  <RegistryValue Name="RemoveDeveloperPluginDirFolder" Value="" Type="string" KeyPath="yes"/>
+                </RegistryKey>
+              </Component>
+              <Directory
+                Id='INSTALLDIR'
+                Name='IE'>
+                <Component Id="RemoveInstallDir" Guid="*" DiskId="1">
+                  <CreateFolder/>
+                  <RemoveFolder Id="RemoveInstallerDirFolder" On="uninstall" />
+                  <RegistryKey Root="HKCU" Key="$(var.gwtRegKey)" Action="createAndRemoveOnUninstall">
+                    <RegistryValue Name="RemoveInstallerDirFolder" Value="" Type="string" KeyPath="yes"/>
+                  </RegistryKey>
+                </Component>
+              </Directory>
+            </Directory>
+          </Directory>
+        </Directory>
+      </Directory>
+    </Directory>
+
+    <!-- Set some registry values. -->
+    <Component
+      Id='registryValues'
+      Directory='INSTALLDIR'
+      Guid='*'>
+      <RegistryKey
+        Root='HKCU'
+        Action='createAndRemoveOnUninstall'
+        Key='$(var.updateRegKey)'>
+        <RegistryValue
+          Name='pv'
+          Value='$(var.version)'
+          Type='string' />
+        <RegistryValue
+          Name='name'
+          Value='$(var.appName)'
+          Type='string' />
+        <RegistryValue
+          Name='lang'
+          Value='en'
+          Type='string' />
+      </RegistryKey>
+    </Component>
+
+    <!-- Define the features to install. -->
+    <Feature
+      Id='CompleteFeature'
+      Display='expand'
+      Level='1'
+      Absent='disallow'>
+      <!--
+        Loaded from oophm.wxs.xml, which is generated by the build
+        script.
+      -->
+      <ComponentRef
+        Id='RemoveGoogleDir' />
+      <ComponentRef
+        Id='RemoveGoogleWebToolkitDir' />
+      <ComponentRef
+        Id='RemoveDeveloperPluginDir' />
+      <ComponentRef
+        Id='RemoveInstallDir' />
+      <ComponentGroupRef
+        Id='oophmDll' />
+      <ComponentRef
+        Id='registryValues' />
+    </Feature>
+
+  </Product>
+</Wix>
diff --git a/plugins/ie/oophm/oophm.sln b/plugins/ie/oophm/oophm.sln
index 4291c48..106c6af 100644
--- a/plugins/ie/oophm/oophm.sln
+++ b/plugins/ie/oophm/oophm.sln
@@ -1,26 +1,26 @@
-

-Microsoft Visual Studio Solution File, Format Version 9.00

-# Visual Studio 2005

-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oophm", "oophm\oophm.vcproj", "{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}"

-EndProject

-Global

-	GlobalSection(SolutionConfigurationPlatforms) = preSolution

-		Debug|Win32 = Debug|Win32

-		Debug|x64 = Debug|x64

-		Release|Win32 = Release|Win32

-		Release|x64 = Release|x64

-	EndGlobalSection

-	GlobalSection(ProjectConfigurationPlatforms) = postSolution

-		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Debug|Win32.ActiveCfg = Debug|Win32

-		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Debug|Win32.Build.0 = Debug|Win32

-		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Debug|x64.ActiveCfg = Debug|x64

-		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Debug|x64.Build.0 = Debug|x64

-		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Release|Win32.ActiveCfg = Release|Win32

-		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Release|Win32.Build.0 = Release|Win32

-		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Release|x64.ActiveCfg = Release|x64

-		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Release|x64.Build.0 = Release|x64

-	EndGlobalSection

-	GlobalSection(SolutionProperties) = preSolution

-		HideSolutionNode = FALSE

-	EndGlobalSection

-EndGlobal

+
+Microsoft Visual Studio Solution File, Format Version 9.00
+# Visual Studio 2005
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "oophm", "oophm\oophm.vcproj", "{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Win32 = Debug|Win32
+		Debug|x64 = Debug|x64
+		Release|Win32 = Release|Win32
+		Release|x64 = Release|x64
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Debug|Win32.ActiveCfg = Debug|Win32
+		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Debug|Win32.Build.0 = Debug|Win32
+		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Debug|x64.ActiveCfg = Debug|x64
+		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Debug|x64.Build.0 = Debug|x64
+		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Release|Win32.ActiveCfg = Release|Win32
+		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Release|Win32.Build.0 = Release|Win32
+		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Release|x64.ActiveCfg = Release|x64
+		{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}.Release|x64.Build.0 = Release|x64
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+EndGlobal
diff --git a/plugins/ie/oophm/oophm/ExceptionCatcher.rgs b/plugins/ie/oophm/oophm/ExceptionCatcher.rgs
index a2b759f..ba8960b 100644
--- a/plugins/ie/oophm/oophm/ExceptionCatcher.rgs
+++ b/plugins/ie/oophm/oophm/ExceptionCatcher.rgs
@@ -1,26 +1,26 @@
-HKCR

-{

-	oophm.ExceptionCatcher.1 = s 'ExceptionCatcher Class'

-	{

-		CLSID = s '{1A2A78F4-B5A4-4208-B520-BDDA0A7EC5CB}'

-	}

-	oophm.ExceptionCatcher = s 'ExceptionCatcher Class'

-	{

-		CLSID = s '{1A2A78F4-B5A4-4208-B520-BDDA0A7EC5CB}'

-		CurVer = s 'oophm.ExceptionCatcher.1'

-	}

-	NoRemove CLSID

-	{

-		ForceRemove {1A2A78F4-B5A4-4208-B520-BDDA0A7EC5CB} = s 'ExceptionCatcher Class'

-		{

-			ProgID = s 'oophm.ExceptionCatcher.1'

-			VersionIndependentProgID = s 'oophm.ExceptionCatcher'

-			ForceRemove 'Programmable'

-			InprocServer32 = s '%MODULE%'

-			{

-				val ThreadingModel = s 'Apartment'

-			}

-			'TypeLib' = s '{9259F105-BE55-4BF6-B7CE-D0AA878C1BA6}'

-		}

-	}

-}

+HKCR
+{
+	oophm.ExceptionCatcher.1 = s 'ExceptionCatcher Class'
+	{
+		CLSID = s '{1A2A78F4-B5A4-4208-B520-BDDA0A7EC5CB}'
+	}
+	oophm.ExceptionCatcher = s 'ExceptionCatcher Class'
+	{
+		CLSID = s '{1A2A78F4-B5A4-4208-B520-BDDA0A7EC5CB}'
+		CurVer = s 'oophm.ExceptionCatcher.1'
+	}
+	NoRemove CLSID
+	{
+		ForceRemove {1A2A78F4-B5A4-4208-B520-BDDA0A7EC5CB} = s 'ExceptionCatcher Class'
+		{
+			ProgID = s 'oophm.ExceptionCatcher.1'
+			VersionIndependentProgID = s 'oophm.ExceptionCatcher'
+			ForceRemove 'Programmable'
+			InprocServer32 = s '%MODULE%'
+			{
+				val ThreadingModel = s 'Apartment'
+			}
+			'TypeLib' = s '{9259F105-BE55-4BF6-B7CE-D0AA878C1BA6}'
+		}
+	}
+}
diff --git a/plugins/ie/oophm/oophm/JavaObject.rgs b/plugins/ie/oophm/oophm/JavaObject.rgs
index 00d6719..f84f142 100644
--- a/plugins/ie/oophm/oophm/JavaObject.rgs
+++ b/plugins/ie/oophm/oophm/JavaObject.rgs
@@ -1,26 +1,26 @@
-HKCR

-{

-	oophm.JavaObject.1 = s 'JavaObject Class'

-	{

-		CLSID = s '{644FD769-8B9D-4AC4-A79E-AAAF5CD751C1}'

-	}

-	oophm.JavaObject = s 'JavaObject Class'

-	{

-		CLSID = s '{644FD769-8B9D-4AC4-A79E-AAAF5CD751C1}'

-		CurVer = s 'oophm.JavaObject.1'

-	}

-	NoRemove CLSID

-	{

-		ForceRemove {644FD769-8B9D-4AC4-A79E-AAAF5CD751C1} = s 'JavaObject Class'

-		{

-			ProgID = s 'oophm.JavaObject.1'

-			VersionIndependentProgID = s 'oophm.JavaObject'

-			ForceRemove 'Programmable'

-			InprocServer32 = s '%MODULE%'

-			{

-				val ThreadingModel = s 'Apartment'

-			}

-			'TypeLib' = s '{9259F105-BE55-4BF6-B7CE-D0AA878C1BA6}'

-		}

-	}

-}

+HKCR
+{
+	oophm.JavaObject.1 = s 'JavaObject Class'
+	{
+		CLSID = s '{644FD769-8B9D-4AC4-A79E-AAAF5CD751C1}'
+	}
+	oophm.JavaObject = s 'JavaObject Class'
+	{
+		CLSID = s '{644FD769-8B9D-4AC4-A79E-AAAF5CD751C1}'
+		CurVer = s 'oophm.JavaObject.1'
+	}
+	NoRemove CLSID
+	{
+		ForceRemove {644FD769-8B9D-4AC4-A79E-AAAF5CD751C1} = s 'JavaObject Class'
+		{
+			ProgID = s 'oophm.JavaObject.1'
+			VersionIndependentProgID = s 'oophm.JavaObject'
+			ForceRemove 'Programmable'
+			InprocServer32 = s '%MODULE%'
+			{
+				val ThreadingModel = s 'Apartment'
+			}
+			'TypeLib' = s '{9259F105-BE55-4BF6-B7CE-D0AA878C1BA6}'
+		}
+	}
+}
diff --git a/plugins/ie/oophm/oophm/dlldata.c b/plugins/ie/oophm/oophm/dlldata.c
index 5b71905..7b86f60 100644
--- a/plugins/ie/oophm/oophm/dlldata.c
+++ b/plugins/ie/oophm/oophm/dlldata.c
@@ -1,38 +1,38 @@
-/*********************************************************

-   DllData file -- generated by MIDL compiler 

-

-        DO NOT ALTER THIS FILE

-

-   This file is regenerated by MIDL on every IDL file compile.

-

-   To completely reconstruct this file, delete it and rerun MIDL

-   on all the IDL files in this DLL, specifying this file for the

-   /dlldata command line option

-

-*********************************************************/

-

-#define PROXY_DELEGATION

-

-#include <rpcproxy.h>

-

-#ifdef __cplusplus

-extern "C"   {

-#endif

-

-EXTERN_PROXY_FILE( oophm )

-

-

-PROXYFILE_LIST_START

-/* Start of list */

-  REFERENCE_PROXY_FILE( oophm ),

-/* End of list */

-PROXYFILE_LIST_END

-

-

-DLLDATA_ROUTINES( aProxyFileList, GET_DLL_CLSID )

-

-#ifdef __cplusplus

-}  /*extern "C" */

-#endif

-

-/* end of generated dlldata file */

+/*********************************************************
+   DllData file -- generated by MIDL compiler 
+
+        DO NOT ALTER THIS FILE
+
+   This file is regenerated by MIDL on every IDL file compile.
+
+   To completely reconstruct this file, delete it and rerun MIDL
+   on all the IDL files in this DLL, specifying this file for the
+   /dlldata command line option
+
+*********************************************************/
+
+#define PROXY_DELEGATION
+
+#include <rpcproxy.h>
+
+#ifdef __cplusplus
+extern "C"   {
+#endif
+
+EXTERN_PROXY_FILE( oophm )
+
+
+PROXYFILE_LIST_START
+/* Start of list */
+  REFERENCE_PROXY_FILE( oophm ),
+/* End of list */
+PROXYFILE_LIST_END
+
+
+DLLDATA_ROUTINES( aProxyFileList, GET_DLL_CLSID )
+
+#ifdef __cplusplus
+}  /*extern "C" */
+#endif
+
+/* end of generated dlldata file */
diff --git a/plugins/ie/oophm/oophm/oophm.rgs b/plugins/ie/oophm/oophm/oophm.rgs
index 928d936..b106174 100644
--- a/plugins/ie/oophm/oophm/oophm.rgs
+++ b/plugins/ie/oophm/oophm/oophm.rgs
@@ -1,11 +1,11 @@
-HKCR

-{

-	NoRemove AppID

-	{

-		'%APPID%' = s 'oophm'

-		'oophm.DLL'

-		{

-			val AppID = s '%APPID%'

-		}

-	}

-}

+HKCR
+{
+	NoRemove AppID
+	{
+		'%APPID%' = s 'oophm'
+		'oophm.DLL'
+		{
+			val AppID = s '%APPID%'
+		}
+	}
+}
diff --git a/plugins/ie/oophm/oophm/oophm.vcproj b/plugins/ie/oophm/oophm/oophm.vcproj
index 288d48c..54ab6a5 100644
--- a/plugins/ie/oophm/oophm/oophm.vcproj
+++ b/plugins/ie/oophm/oophm/oophm.vcproj
@@ -1,883 +1,883 @@
-<?xml version="1.0" encoding="Windows-1252"?>

-<VisualStudioProject

-	ProjectType="Visual C++"

-	Version="8.00"

-	Name="oophm"

-	ProjectGUID="{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}"

-	RootNamespace="oophm"

-	Keyword="AtlProj"

-	>

-	<Platforms>

-		<Platform

-			Name="Win32"

-		/>

-		<Platform

-			Name="x64"

-		/>

-	</Platforms>

-	<ToolFiles>

-	</ToolFiles>

-	<Configurations>

-		<Configuration

-			Name="Debug|Win32"

-			OutputDirectory="$(ConfigurationName)32"

-			IntermediateDirectory="$(ConfigurationName)32"

-			ConfigurationType="2"

-			UseOfMFC="1"

-			UseOfATL="1"

-			ATLMinimizesCRunTimeLibraryUsage="false"

-			CharacterSet="1"

-			>

-			<Tool

-				Name="VCPreBuildEventTool"

-			/>

-			<Tool

-				Name="VCCustomBuildTool"

-			/>

-			<Tool

-				Name="VCXMLDataGeneratorTool"

-			/>

-			<Tool

-				Name="VCWebServiceProxyGeneratorTool"

-			/>

-			<Tool

-				Name="VCMIDLTool"

-				PreprocessorDefinitions="_DEBUG"

-				MkTypLibCompatible="false"

-				TargetEnvironment="1"

-				GenerateStublessProxies="true"

-				TypeLibraryName="$(IntDir)/oophm.tlb"

-				HeaderFileName="oophm_i.h"

-				DLLDataFileName=""

-				InterfaceIdentifierFileName="oophm_i.c"

-				ProxyFileName="oophm_p.c"

-				ValidateParameters="true"

-			/>

-			<Tool

-				Name="VCCLCompilerTool"

-				Optimization="0"

-				AdditionalIncludeDirectories="&quot;$(ProjectDir)&quot;;../../../platform/Win;../../../common"

-				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;GWT_DEBUGLEVEL=Spam"

-				MinimalRebuild="true"

-				BasicRuntimeChecks="3"

-				RuntimeLibrary="1"

-				UsePrecompiledHeader="0"

-				WarningLevel="3"

-				DebugInformationFormat="4"

-			/>

-			<Tool

-				Name="VCManagedResourceCompilerTool"

-			/>

-			<Tool

-				Name="VCResourceCompilerTool"

-				PreprocessorDefinitions="_DEBUG"

-				Culture="1033"

-				AdditionalIncludeDirectories="$(IntDir)"

-			/>

-			<Tool

-				Name="VCPreLinkEventTool"

-			/>

-			<Tool

-				Name="VCLinkerTool"

-				RegisterOutput="true"

-				IgnoreImportLibrary="true"

-				AdditionalDependencies="comsuppw.lib ws2_32.lib"

-				OutputFile="..\..\prebuilt\$(ProjectName).dll"

-				LinkIncremental="2"

-				ModuleDefinitionFile=".\oophm.def"

-				GenerateDebugInformation="true"

-				SubSystem="2"

-				TargetMachine="1"

-			/>

-			<Tool

-				Name="VCALinkTool"

-			/>

-			<Tool

-				Name="VCManifestTool"

-			/>

-			<Tool

-				Name="VCXDCMakeTool"

-			/>

-			<Tool

-				Name="VCBscMakeTool"

-			/>

-			<Tool

-				Name="VCFxCopTool"

-			/>

-			<Tool

-				Name="VCAppVerifierTool"

-			/>

-			<Tool

-				Name="VCWebDeploymentTool"

-			/>

-			<Tool

-				Name="VCPostBuildEventTool"

-			/>

-		</Configuration>

-		<Configuration

-			Name="Debug|x64"

-			OutputDirectory="$(PlatformName)\$(ConfigurationName)"

-			IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"

-			ConfigurationType="2"

-			UseOfMFC="1"

-			UseOfATL="1"

-			ATLMinimizesCRunTimeLibraryUsage="false"

-			CharacterSet="1"

-			>

-			<Tool

-				Name="VCPreBuildEventTool"

-			/>

-			<Tool

-				Name="VCCustomBuildTool"

-			/>

-			<Tool

-				Name="VCXMLDataGeneratorTool"

-			/>

-			<Tool

-				Name="VCWebServiceProxyGeneratorTool"

-			/>

-			<Tool

-				Name="VCMIDLTool"

-				PreprocessorDefinitions="_DEBUG"

-				MkTypLibCompatible="false"

-				TargetEnvironment="3"

-				GenerateStublessProxies="true"

-				TypeLibraryName="$(IntDir)/oophm.tlb"

-				HeaderFileName="oophm_i.h"

-				DLLDataFileName=""

-				InterfaceIdentifierFileName="oophm_i.c"

-				ProxyFileName="oophm_p.c"

-			/>

-			<Tool

-				Name="VCCLCompilerTool"

-				Optimization="0"

-				AdditionalIncludeDirectories="&quot;$(ProjectDir)&quot;;../../../platform/Win;../../../common"

-				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;GWT_DEBUGLEVEL=Spam"

-				MinimalRebuild="true"

-				BasicRuntimeChecks="3"

-				RuntimeLibrary="1"

-				UsePrecompiledHeader="0"

-				WarningLevel="3"

-				DebugInformationFormat="3"

-			/>

-			<Tool

-				Name="VCManagedResourceCompilerTool"

-			/>

-			<Tool

-				Name="VCResourceCompilerTool"

-				PreprocessorDefinitions="_DEBUG"

-				Culture="1033"

-				AdditionalIncludeDirectories="$(IntDir)"

-			/>

-			<Tool

-				Name="VCPreLinkEventTool"

-			/>

-			<Tool

-				Name="VCLinkerTool"

-				IgnoreImportLibrary="true"

-				AdditionalDependencies="comsuppw.lib ws2_32.lib"

-				OutputFile="..\..\prebuilt\$(ProjectName)64.dll"

-				LinkIncremental="2"

-				ModuleDefinitionFile=".\oophm.def"

-				GenerateDebugInformation="true"

-				SubSystem="2"

-				TargetMachine="17"

-			/>

-			<Tool

-				Name="VCALinkTool"

-			/>

-			<Tool

-				Name="VCManifestTool"

-			/>

-			<Tool

-				Name="VCXDCMakeTool"

-			/>

-			<Tool

-				Name="VCBscMakeTool"

-			/>

-			<Tool

-				Name="VCFxCopTool"

-			/>

-			<Tool

-				Name="VCAppVerifierTool"

-			/>

-			<Tool

-				Name="VCWebDeploymentTool"

-			/>

-			<Tool

-				Name="VCPostBuildEventTool"

-			/>

-		</Configuration>

-		<Configuration

-			Name="Release|Win32"

-			OutputDirectory="$(ConfigurationName)32"

-			IntermediateDirectory="$(ConfigurationName)32"

-			ConfigurationType="2"

-			UseOfMFC="1"

-			UseOfATL="1"

-			ATLMinimizesCRunTimeLibraryUsage="false"

-			CharacterSet="1"

-			>

-			<Tool

-				Name="VCPreBuildEventTool"

-			/>

-			<Tool

-				Name="VCCustomBuildTool"

-			/>

-			<Tool

-				Name="VCXMLDataGeneratorTool"

-			/>

-			<Tool

-				Name="VCWebServiceProxyGeneratorTool"

-			/>

-			<Tool

-				Name="VCMIDLTool"

-				PreprocessorDefinitions="NDEBUG"

-				MkTypLibCompatible="false"

-				TargetEnvironment="1"

-				GenerateStublessProxies="true"

-				TypeLibraryName="$(IntDir)/oophm.tlb"

-				HeaderFileName="oophm_i.h"

-				DLLDataFileName=""

-				InterfaceIdentifierFileName="oophm_i.c"

-				ProxyFileName="oophm_p.c"

-				ValidateParameters="true"

-			/>

-			<Tool

-				Name="VCCLCompilerTool"

-				Optimization="2"

-				AdditionalIncludeDirectories="&quot;$(ProjectDir)&quot;;../../../platform/Win;../../../common"

-				PreprocessorDefinitions="_WINDOWS;GWT_DEBUGDISABLE"

-				RuntimeLibrary="0"

-				UsePrecompiledHeader="0"

-				WarningLevel="3"

-				DebugInformationFormat="3"

-			/>

-			<Tool

-				Name="VCManagedResourceCompilerTool"

-			/>

-			<Tool

-				Name="VCResourceCompilerTool"

-				PreprocessorDefinitions="NDEBUG"

-				Culture="1033"

-				AdditionalIncludeDirectories="$(IntDir)"

-			/>

-			<Tool

-				Name="VCPreLinkEventTool"

-			/>

-			<Tool

-				Name="VCLinkerTool"

-				RegisterOutput="true"

-				IgnoreImportLibrary="true"

-				AdditionalDependencies="comsuppw.lib ws2_32.lib"

-				OutputFile="..\..\prebuilt\$(ProjectName).dll"

-				LinkIncremental="1"

-				ModuleDefinitionFile=".\oophm.def"

-				GenerateDebugInformation="true"

-				SubSystem="2"

-				OptimizeReferences="2"

-				EnableCOMDATFolding="2"

-				TargetMachine="1"

-			/>

-			<Tool

-				Name="VCALinkTool"

-			/>

-			<Tool

-				Name="VCManifestTool"

-			/>

-			<Tool

-				Name="VCXDCMakeTool"

-			/>

-			<Tool

-				Name="VCBscMakeTool"

-			/>

-			<Tool

-				Name="VCFxCopTool"

-			/>

-			<Tool

-				Name="VCAppVerifierTool"

-			/>

-			<Tool

-				Name="VCWebDeploymentTool"

-			/>

-			<Tool

-				Name="VCPostBuildEventTool"

-			/>

-		</Configuration>

-		<Configuration

-			Name="Release|x64"

-			OutputDirectory="$(ConfigurationName)64"

-			IntermediateDirectory="$(ConfigurationName)64"

-			ConfigurationType="2"

-			UseOfMFC="1"

-			UseOfATL="1"

-			ATLMinimizesCRunTimeLibraryUsage="false"

-			CharacterSet="1"

-			>

-			<Tool

-				Name="VCPreBuildEventTool"

-			/>

-			<Tool

-				Name="VCCustomBuildTool"

-			/>

-			<Tool

-				Name="VCXMLDataGeneratorTool"

-			/>

-			<Tool

-				Name="VCWebServiceProxyGeneratorTool"

-			/>

-			<Tool

-				Name="VCMIDLTool"

-				PreprocessorDefinitions="NDEBUG"

-				MkTypLibCompatible="false"

-				TargetEnvironment="3"

-				GenerateStublessProxies="true"

-				TypeLibraryName="$(IntDir)/oophm.tlb"

-				HeaderFileName="oophm_i.h"

-				DLLDataFileName=""

-				InterfaceIdentifierFileName="oophm_i.c"

-				ProxyFileName="oophm_p.c"

-			/>

-			<Tool

-				Name="VCCLCompilerTool"

-				Optimization="2"

-				FavorSizeOrSpeed="1"

-				AdditionalIncludeDirectories="&quot;$(ProjectDir)&quot;;../../../platform/Win;../../../common"

-				PreprocessorDefinitions="_WINDOWS;GWT_DEBUGDISABLE"

-				RuntimeLibrary="0"

-				UsePrecompiledHeader="0"

-				WarningLevel="3"

-				Detect64BitPortabilityProblems="true"

-				DebugInformationFormat="3"

-			/>

-			<Tool

-				Name="VCManagedResourceCompilerTool"

-			/>

-			<Tool

-				Name="VCResourceCompilerTool"

-				PreprocessorDefinitions="NDEBUG"

-				Culture="1033"

-				AdditionalIncludeDirectories="$(IntDir)"

-			/>

-			<Tool

-				Name="VCPreLinkEventTool"

-			/>

-			<Tool

-				Name="VCLinkerTool"

-				IgnoreImportLibrary="true"

-				AdditionalDependencies="comsuppw.lib ws2_32.lib"

-				OutputFile="..\..\prebuilt\$(ProjectName)64.dll"

-				LinkIncremental="1"

-				ModuleDefinitionFile=".\oophm.def"

-				GenerateDebugInformation="true"

-				SubSystem="2"

-				OptimizeReferences="2"

-				EnableCOMDATFolding="2"

-				TargetMachine="17"

-			/>

-			<Tool

-				Name="VCALinkTool"

-			/>

-			<Tool

-				Name="VCManifestTool"

-			/>

-			<Tool

-				Name="VCXDCMakeTool"

-			/>

-			<Tool

-				Name="VCBscMakeTool"

-			/>

-			<Tool

-				Name="VCFxCopTool"

-			/>

-			<Tool

-				Name="VCAppVerifierTool"

-			/>

-			<Tool

-				Name="VCWebDeploymentTool"

-			/>

-			<Tool

-				Name="VCPostBuildEventTool"

-			/>

-		</Configuration>

-	</Configurations>

-	<References>

-	</References>

-	<Files>

-		<Filter

-			Name="Source Files"

-			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"

-			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"

-			>

-			<File

-				RelativePath="..\..\..\platform\Win\AllowDialog.cpp"

-				>

-			</File>

-			<File

-				RelativePath=".\dlldatax.c"

-				>

-				<FileConfiguration

-					Name="Debug|Win32"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Debug|x64"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Release|Win32"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Release|x64"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-			</File>

-			<File

-				RelativePath=".\dllmain.cpp"

-				>

-				<FileConfiguration

-					Name="Debug|Win32"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Debug|x64"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Release|Win32"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Release|x64"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-			</File>

-			<File

-				RelativePath=".\ExceptionCatcher.cpp"

-				>

-			</File>

-			<File

-				RelativePath=".\IESessionHandler.cpp"

-				>

-			</File>

-			<File

-				RelativePath=".\JavaObject.cpp"

-				>

-			</File>

-			<File

-				RelativePath=".\oophm.cpp"

-				>

-			</File>

-			<File

-				RelativePath=".\oophm.def"

-				>

-			</File>

-			<File

-				RelativePath=".\oophm.idl"

-				>

-			</File>

-			<File

-				RelativePath=".\plugin.cpp"

-				>

-			</File>

-			<File

-				RelativePath="..\..\..\platform\Win\Preferences.cpp"

-				>

-			</File>

-			<File

-				RelativePath=".\stdafx.cpp"

-				>

-				<FileConfiguration

-					Name="Debug|Win32"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="1"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Debug|x64"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="1"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Release|Win32"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="1"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Release|x64"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="1"

-					/>

-				</FileConfiguration>

-			</File>

-			<Filter

-				Name="common"

-				>

-				<File

-					RelativePath="..\..\..\common\AllowedConnections.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\CheckVersionsMessage.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\ChooseTransportMessage.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\Debug.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\FatalErrorMessage.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\FreeValueMessage.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\HostChannel.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\InvokeMessage.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\InvokeSpecialMessage.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\LoadJsniMessage.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\LoadModuleMessage.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\ProtocolVersionMessage.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\ReturnMessage.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\ServerMethods.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\Socket.cpp"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\SwitchTransportMessage.cpp"

-					>

-				</File>

-			</Filter>

-		</Filter>

-		<Filter

-			Name="Header Files"

-			Filter="h;hpp;hxx;hm;inl;inc;xsd"

-			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"

-			>

-			<File

-				RelativePath="..\..\..\platform\Win\AllowDialog.h"

-				>

-			</File>

-			<File

-				RelativePath=".\dlldatax.h"

-				>

-			</File>

-			<File

-				RelativePath=".\dllmain.h"

-				>

-			</File>

-			<File

-				RelativePath=".\ExceptionCatcher.h"

-				>

-			</File>

-			<File

-				RelativePath="..\..\..\common\FatalErrorMessage.h"

-				>

-			</File>

-			<File

-				RelativePath=".\IESessionHandler.h"

-				>

-			</File>

-			<File

-				RelativePath=".\JavaObject.h"

-				>

-			</File>

-			<File

-				RelativePath=".\plugin.h"

-				>

-			</File>

-			<File

-				RelativePath="..\..\..\platform\Win\Preferences.h"

-				>

-			</File>

-			<File

-				RelativePath=".\Resource.h"

-				>

-			</File>

-			<File

-				RelativePath=".\SessionData.h"

-				>

-			</File>

-			<File

-				RelativePath=".\stdafx.h"

-				>

-			</File>

-			<File

-				RelativePath=".\targetver.h"

-				>

-			</File>

-			<Filter

-				Name="common"

-				>

-				<File

-					RelativePath="..\..\..\common\AllowedConnections.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\BrowserChannel.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\CheckVersionsMessage.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\ChooseTransportMessage.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\Debug.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\DebugLevel.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\FreeValueMessage.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\HashMap.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\HostChannel.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\InvokeMessage.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\InvokeSpecialMessage.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\LoadJsniMessage.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\LoadModuleMessage.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\Message.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\Platform.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\ProtocolVersionMessage.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\QuitMessage.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\ReturnMessage.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\ServerMethods.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\SessionHandler.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\Socket.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\SwitchTransportMessage.h"

-					>

-				</File>

-				<File

-					RelativePath="..\..\..\common\Value.h"

-					>

-				</File>

-			</Filter>

-		</Filter>

-		<Filter

-			Name="Resource Files"

-			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"

-			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"

-			>

-			<File

-				RelativePath=".\ExceptionCatcher.rgs"

-				>

-			</File>

-			<File

-				RelativePath=".\JavaObject.rgs"

-				>

-			</File>

-			<File

-				RelativePath=".\oophm.rc"

-				>

-			</File>

-			<File

-				RelativePath=".\oophm.rgs"

-				>

-			</File>

-			<File

-				RelativePath=".\plugin.bmp"

-				>

-			</File>

-			<File

-				RelativePath=".\plugin.rgs"

-				>

-			</File>

-		</Filter>

-		<Filter

-			Name="Generated Files"

-			SourceControlFiles="false"

-			>

-			<File

-				RelativePath=".\oophm_i.c"

-				>

-				<FileConfiguration

-					Name="Debug|Win32"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Debug|x64"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Release|Win32"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-				<FileConfiguration

-					Name="Release|x64"

-					>

-					<Tool

-						Name="VCCLCompilerTool"

-						UsePrecompiledHeader="0"

-						CompileAsManaged="0"

-					/>

-				</FileConfiguration>

-			</File>

-			<File

-				RelativePath=".\oophm_i.h"

-				>

-			</File>

-		</Filter>

-		<File

-			RelativePath=".\plugin.htm"

-			DeploymentContent="true"

-			>

-		</File>

-		<File

-			RelativePath=".\pluginUI.htm"

-			DeploymentContent="true"

-			>

-		</File>

-		<File

-			RelativePath=".\ReadMe.txt"

-			>

-		</File>

-	</Files>

-	<Globals>

-	</Globals>

-</VisualStudioProject>

+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+	ProjectType="Visual C++"
+	Version="8.00"
+	Name="oophm"
+	ProjectGUID="{EB69BDFE-9380-4C51-99E8-C3EB25AE36A2}"
+	RootNamespace="oophm"
+	Keyword="AtlProj"
+	>
+	<Platforms>
+		<Platform
+			Name="Win32"
+		/>
+		<Platform
+			Name="x64"
+		/>
+	</Platforms>
+	<ToolFiles>
+	</ToolFiles>
+	<Configurations>
+		<Configuration
+			Name="Debug|Win32"
+			OutputDirectory="$(ConfigurationName)32"
+			IntermediateDirectory="$(ConfigurationName)32"
+			ConfigurationType="2"
+			UseOfMFC="1"
+			UseOfATL="1"
+			ATLMinimizesCRunTimeLibraryUsage="false"
+			CharacterSet="1"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				PreprocessorDefinitions="_DEBUG"
+				MkTypLibCompatible="false"
+				TargetEnvironment="1"
+				GenerateStublessProxies="true"
+				TypeLibraryName="$(IntDir)/oophm.tlb"
+				HeaderFileName="oophm_i.h"
+				DLLDataFileName=""
+				InterfaceIdentifierFileName="oophm_i.c"
+				ProxyFileName="oophm_p.c"
+				ValidateParameters="true"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				Optimization="0"
+				AdditionalIncludeDirectories="&quot;$(ProjectDir)&quot;;../../../platform/Win;../../../common"
+				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;GWT_DEBUGLEVEL=Spam"
+				MinimalRebuild="true"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="1"
+				UsePrecompiledHeader="0"
+				WarningLevel="3"
+				DebugInformationFormat="4"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="_DEBUG"
+				Culture="1033"
+				AdditionalIncludeDirectories="$(IntDir)"
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				RegisterOutput="true"
+				IgnoreImportLibrary="true"
+				AdditionalDependencies="comsuppw.lib ws2_32.lib"
+				OutputFile="..\..\prebuilt\$(ProjectName).dll"
+				LinkIncremental="2"
+				ModuleDefinitionFile=".\oophm.def"
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				TargetMachine="1"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCWebDeploymentTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
+			Name="Debug|x64"
+			OutputDirectory="$(PlatformName)\$(ConfigurationName)"
+			IntermediateDirectory="$(PlatformName)\$(ConfigurationName)"
+			ConfigurationType="2"
+			UseOfMFC="1"
+			UseOfATL="1"
+			ATLMinimizesCRunTimeLibraryUsage="false"
+			CharacterSet="1"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				PreprocessorDefinitions="_DEBUG"
+				MkTypLibCompatible="false"
+				TargetEnvironment="3"
+				GenerateStublessProxies="true"
+				TypeLibraryName="$(IntDir)/oophm.tlb"
+				HeaderFileName="oophm_i.h"
+				DLLDataFileName=""
+				InterfaceIdentifierFileName="oophm_i.c"
+				ProxyFileName="oophm_p.c"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				Optimization="0"
+				AdditionalIncludeDirectories="&quot;$(ProjectDir)&quot;;../../../platform/Win;../../../common"
+				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;GWT_DEBUGLEVEL=Spam"
+				MinimalRebuild="true"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="1"
+				UsePrecompiledHeader="0"
+				WarningLevel="3"
+				DebugInformationFormat="3"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="_DEBUG"
+				Culture="1033"
+				AdditionalIncludeDirectories="$(IntDir)"
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				IgnoreImportLibrary="true"
+				AdditionalDependencies="comsuppw.lib ws2_32.lib"
+				OutputFile="..\..\prebuilt\$(ProjectName)64.dll"
+				LinkIncremental="2"
+				ModuleDefinitionFile=".\oophm.def"
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				TargetMachine="17"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCWebDeploymentTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
+			Name="Release|Win32"
+			OutputDirectory="$(ConfigurationName)32"
+			IntermediateDirectory="$(ConfigurationName)32"
+			ConfigurationType="2"
+			UseOfMFC="1"
+			UseOfATL="1"
+			ATLMinimizesCRunTimeLibraryUsage="false"
+			CharacterSet="1"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				PreprocessorDefinitions="NDEBUG"
+				MkTypLibCompatible="false"
+				TargetEnvironment="1"
+				GenerateStublessProxies="true"
+				TypeLibraryName="$(IntDir)/oophm.tlb"
+				HeaderFileName="oophm_i.h"
+				DLLDataFileName=""
+				InterfaceIdentifierFileName="oophm_i.c"
+				ProxyFileName="oophm_p.c"
+				ValidateParameters="true"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				Optimization="2"
+				AdditionalIncludeDirectories="&quot;$(ProjectDir)&quot;;../../../platform/Win;../../../common"
+				PreprocessorDefinitions="_WINDOWS;GWT_DEBUGDISABLE"
+				RuntimeLibrary="0"
+				UsePrecompiledHeader="0"
+				WarningLevel="3"
+				DebugInformationFormat="3"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="NDEBUG"
+				Culture="1033"
+				AdditionalIncludeDirectories="$(IntDir)"
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				RegisterOutput="true"
+				IgnoreImportLibrary="true"
+				AdditionalDependencies="comsuppw.lib ws2_32.lib"
+				OutputFile="..\..\prebuilt\$(ProjectName).dll"
+				LinkIncremental="1"
+				ModuleDefinitionFile=".\oophm.def"
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				TargetMachine="1"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCWebDeploymentTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+		<Configuration
+			Name="Release|x64"
+			OutputDirectory="$(ConfigurationName)64"
+			IntermediateDirectory="$(ConfigurationName)64"
+			ConfigurationType="2"
+			UseOfMFC="1"
+			UseOfATL="1"
+			ATLMinimizesCRunTimeLibraryUsage="false"
+			CharacterSet="1"
+			>
+			<Tool
+				Name="VCPreBuildEventTool"
+			/>
+			<Tool
+				Name="VCCustomBuildTool"
+			/>
+			<Tool
+				Name="VCXMLDataGeneratorTool"
+			/>
+			<Tool
+				Name="VCWebServiceProxyGeneratorTool"
+			/>
+			<Tool
+				Name="VCMIDLTool"
+				PreprocessorDefinitions="NDEBUG"
+				MkTypLibCompatible="false"
+				TargetEnvironment="3"
+				GenerateStublessProxies="true"
+				TypeLibraryName="$(IntDir)/oophm.tlb"
+				HeaderFileName="oophm_i.h"
+				DLLDataFileName=""
+				InterfaceIdentifierFileName="oophm_i.c"
+				ProxyFileName="oophm_p.c"
+			/>
+			<Tool
+				Name="VCCLCompilerTool"
+				Optimization="2"
+				FavorSizeOrSpeed="1"
+				AdditionalIncludeDirectories="&quot;$(ProjectDir)&quot;;../../../platform/Win;../../../common"
+				PreprocessorDefinitions="_WINDOWS;GWT_DEBUGDISABLE"
+				RuntimeLibrary="0"
+				UsePrecompiledHeader="0"
+				WarningLevel="3"
+				Detect64BitPortabilityProblems="true"
+				DebugInformationFormat="3"
+			/>
+			<Tool
+				Name="VCManagedResourceCompilerTool"
+			/>
+			<Tool
+				Name="VCResourceCompilerTool"
+				PreprocessorDefinitions="NDEBUG"
+				Culture="1033"
+				AdditionalIncludeDirectories="$(IntDir)"
+			/>
+			<Tool
+				Name="VCPreLinkEventTool"
+			/>
+			<Tool
+				Name="VCLinkerTool"
+				IgnoreImportLibrary="true"
+				AdditionalDependencies="comsuppw.lib ws2_32.lib"
+				OutputFile="..\..\prebuilt\$(ProjectName)64.dll"
+				LinkIncremental="1"
+				ModuleDefinitionFile=".\oophm.def"
+				GenerateDebugInformation="true"
+				SubSystem="2"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				TargetMachine="17"
+			/>
+			<Tool
+				Name="VCALinkTool"
+			/>
+			<Tool
+				Name="VCManifestTool"
+			/>
+			<Tool
+				Name="VCXDCMakeTool"
+			/>
+			<Tool
+				Name="VCBscMakeTool"
+			/>
+			<Tool
+				Name="VCFxCopTool"
+			/>
+			<Tool
+				Name="VCAppVerifierTool"
+			/>
+			<Tool
+				Name="VCWebDeploymentTool"
+			/>
+			<Tool
+				Name="VCPostBuildEventTool"
+			/>
+		</Configuration>
+	</Configurations>
+	<References>
+	</References>
+	<Files>
+		<Filter
+			Name="Source Files"
+			Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
+			UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
+			>
+			<File
+				RelativePath="..\..\..\platform\Win\AllowDialog.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\dlldatax.c"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Debug|x64"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|x64"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath=".\dllmain.cpp"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Debug|x64"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|x64"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath=".\ExceptionCatcher.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\IESessionHandler.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\JavaObject.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\oophm.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\oophm.def"
+				>
+			</File>
+			<File
+				RelativePath=".\oophm.idl"
+				>
+			</File>
+			<File
+				RelativePath=".\plugin.cpp"
+				>
+			</File>
+			<File
+				RelativePath="..\..\..\platform\Win\Preferences.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\stdafx.cpp"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="1"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Debug|x64"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="1"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="1"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|x64"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="1"
+					/>
+				</FileConfiguration>
+			</File>
+			<Filter
+				Name="common"
+				>
+				<File
+					RelativePath="..\..\..\common\AllowedConnections.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\CheckVersionsMessage.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\ChooseTransportMessage.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\Debug.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\FatalErrorMessage.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\FreeValueMessage.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\HostChannel.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\InvokeMessage.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\InvokeSpecialMessage.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\LoadJsniMessage.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\LoadModuleMessage.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\ProtocolVersionMessage.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\ReturnMessage.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\ServerMethods.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\Socket.cpp"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\SwitchTransportMessage.cpp"
+					>
+				</File>
+			</Filter>
+		</Filter>
+		<Filter
+			Name="Header Files"
+			Filter="h;hpp;hxx;hm;inl;inc;xsd"
+			UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
+			>
+			<File
+				RelativePath="..\..\..\platform\Win\AllowDialog.h"
+				>
+			</File>
+			<File
+				RelativePath=".\dlldatax.h"
+				>
+			</File>
+			<File
+				RelativePath=".\dllmain.h"
+				>
+			</File>
+			<File
+				RelativePath=".\ExceptionCatcher.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\..\common\FatalErrorMessage.h"
+				>
+			</File>
+			<File
+				RelativePath=".\IESessionHandler.h"
+				>
+			</File>
+			<File
+				RelativePath=".\JavaObject.h"
+				>
+			</File>
+			<File
+				RelativePath=".\plugin.h"
+				>
+			</File>
+			<File
+				RelativePath="..\..\..\platform\Win\Preferences.h"
+				>
+			</File>
+			<File
+				RelativePath=".\Resource.h"
+				>
+			</File>
+			<File
+				RelativePath=".\SessionData.h"
+				>
+			</File>
+			<File
+				RelativePath=".\stdafx.h"
+				>
+			</File>
+			<File
+				RelativePath=".\targetver.h"
+				>
+			</File>
+			<Filter
+				Name="common"
+				>
+				<File
+					RelativePath="..\..\..\common\AllowedConnections.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\BrowserChannel.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\CheckVersionsMessage.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\ChooseTransportMessage.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\Debug.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\DebugLevel.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\FreeValueMessage.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\HashMap.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\HostChannel.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\InvokeMessage.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\InvokeSpecialMessage.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\LoadJsniMessage.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\LoadModuleMessage.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\Message.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\Platform.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\ProtocolVersionMessage.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\QuitMessage.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\ReturnMessage.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\ServerMethods.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\SessionHandler.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\Socket.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\SwitchTransportMessage.h"
+					>
+				</File>
+				<File
+					RelativePath="..\..\..\common\Value.h"
+					>
+				</File>
+			</Filter>
+		</Filter>
+		<Filter
+			Name="Resource Files"
+			Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
+			UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
+			>
+			<File
+				RelativePath=".\ExceptionCatcher.rgs"
+				>
+			</File>
+			<File
+				RelativePath=".\JavaObject.rgs"
+				>
+			</File>
+			<File
+				RelativePath=".\oophm.rc"
+				>
+			</File>
+			<File
+				RelativePath=".\oophm.rgs"
+				>
+			</File>
+			<File
+				RelativePath=".\plugin.bmp"
+				>
+			</File>
+			<File
+				RelativePath=".\plugin.rgs"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="Generated Files"
+			SourceControlFiles="false"
+			>
+			<File
+				RelativePath=".\oophm_i.c"
+				>
+				<FileConfiguration
+					Name="Debug|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Debug|x64"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|Win32"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release|x64"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+						UsePrecompiledHeader="0"
+						CompileAsManaged="0"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath=".\oophm_i.h"
+				>
+			</File>
+		</Filter>
+		<File
+			RelativePath=".\plugin.htm"
+			DeploymentContent="true"
+			>
+		</File>
+		<File
+			RelativePath=".\pluginUI.htm"
+			DeploymentContent="true"
+			>
+		</File>
+		<File
+			RelativePath=".\ReadMe.txt"
+			>
+		</File>
+	</Files>
+	<Globals>
+	</Globals>
+</VisualStudioProject>
diff --git a/plugins/ie/oophm/oophm/plugin.rgs b/plugins/ie/oophm/oophm/plugin.rgs
index 33e8062..e6f868e 100644
--- a/plugins/ie/oophm/oophm/plugin.rgs
+++ b/plugins/ie/oophm/oophm/plugin.rgs
@@ -1,34 +1,34 @@
-HKCR

-{

-	oophm.plugin.1 = s 'plugin Class'

-	{

-		CLSID = s '{1D6156B6-002B-49E7-B5CA-C138FB843B4E}'

-	}

-	oophm.plugin = s 'plugin Class'

-	{

-		CLSID = s '{1D6156B6-002B-49E7-B5CA-C138FB843B4E}'

-		CurVer = s 'oophm.plugin.1'

-	}

-	NoRemove CLSID

-	{

-		ForceRemove {1D6156B6-002B-49E7-B5CA-C138FB843B4E} = s 'plugin Class'

-		{

-			ProgID = s 'oophm.plugin.1'

-			VersionIndependentProgID = s 'oophm.plugin'

-			ForceRemove 'Programmable'

-			InprocServer32 = s '%MODULE%'

-			{

-				val ThreadingModel = s 'Apartment'

-			}

-			val AppID = s '%APPID%'

-			ForceRemove 'Control'

-			ForceRemove 'ToolboxBitmap32' = s '%MODULE%, 102'

-			'MiscStatus' = s '0'

-			{

-			    '1' = s '%OLEMISC%'

-			}

-			'TypeLib' = s '{9259F105-BE55-4BF6-B7CE-D0AA878C1BA6}'

-			'Version' = s '1.0'

-		}

-	}

-}

+HKCR
+{
+	oophm.plugin.1 = s 'plugin Class'
+	{
+		CLSID = s '{1D6156B6-002B-49E7-B5CA-C138FB843B4E}'
+	}
+	oophm.plugin = s 'plugin Class'
+	{
+		CLSID = s '{1D6156B6-002B-49E7-B5CA-C138FB843B4E}'
+		CurVer = s 'oophm.plugin.1'
+	}
+	NoRemove CLSID
+	{
+		ForceRemove {1D6156B6-002B-49E7-B5CA-C138FB843B4E} = s 'plugin Class'
+		{
+			ProgID = s 'oophm.plugin.1'
+			VersionIndependentProgID = s 'oophm.plugin'
+			ForceRemove 'Programmable'
+			InprocServer32 = s '%MODULE%'
+			{
+				val ThreadingModel = s 'Apartment'
+			}
+			val AppID = s '%APPID%'
+			ForceRemove 'Control'
+			ForceRemove 'ToolboxBitmap32' = s '%MODULE%, 102'
+			'MiscStatus' = s '0'
+			{
+			    '1' = s '%OLEMISC%'
+			}
+			'TypeLib' = s '{9259F105-BE55-4BF6-B7CE-D0AA878C1BA6}'
+			'Version' = s '1.0'
+		}
+	}
+}