[commit] r1909 - in trunk/GME: Gme MgaUtil PartBrowser

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Fri Apr 20 11:20:54 CDT 2012


Author: ksmyth
Date: Fri Apr 20 11:20:52 2012
New Revision: 1909

Log:
#import no_registry prevents errors like Cannot read type library file: MetaLib.tlb: Error loading type library/DLL when Meta.dll isnt registered

Modified:
   trunk/GME/Gme/StdAfx.cpp
   trunk/GME/Gme/StdAfx.h
   trunk/GME/MgaUtil/StdAfx.cpp
   trunk/GME/MgaUtil/StdAfx.h
   trunk/GME/PartBrowser/stdafx.cpp
   trunk/GME/PartBrowser/stdafx.h

Modified: trunk/GME/Gme/StdAfx.cpp
==============================================================================
--- trunk/GME/Gme/StdAfx.cpp	Fri Apr 20 11:20:34 2012	(r1908)
+++ trunk/GME/Gme/StdAfx.cpp	Fri Apr 20 11:20:52 2012	(r1909)
@@ -4,6 +4,6 @@
 
 #include "stdafx.h"
 
-#import "MgaUtilLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__")
+#import "MgaUtilLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
 
 

Modified: trunk/GME/Gme/StdAfx.h
==============================================================================
--- trunk/GME/Gme/StdAfx.h	Fri Apr 20 11:20:34 2012	(r1908)
+++ trunk/GME/Gme/StdAfx.h	Fri Apr 20 11:20:52 2012	(r1909)
@@ -50,12 +50,12 @@
 
 
 // Imports
-#import "CoreLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MetaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MgaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "ParserLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "GMELib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MgaUtilLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
+#import "CoreLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MetaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MgaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "ParserLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "GMELib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MgaUtilLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
 
 #include "CommonImport.h"
 

Modified: trunk/GME/MgaUtil/StdAfx.cpp
==============================================================================
--- trunk/GME/MgaUtil/StdAfx.cpp	Fri Apr 20 11:20:34 2012	(r1908)
+++ trunk/GME/MgaUtil/StdAfx.cpp	Fri Apr 20 11:20:52 2012	(r1909)
@@ -10,10 +10,10 @@
 #include <statreg.h>
 #endif
 
-#import "CoreLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MgaLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MetaLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "ParserLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__")
+#import "CoreLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MgaLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MetaLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "ParserLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
 
 #if defined(_M_IX86)
 #define PROCESSOR_ARCHITECTURE "x86"

Modified: trunk/GME/MgaUtil/StdAfx.h
==============================================================================
--- trunk/GME/MgaUtil/StdAfx.h	Fri Apr 20 11:20:34 2012	(r1908)
+++ trunk/GME/MgaUtil/StdAfx.h	Fri Apr 20 11:20:52 2012	(r1909)
@@ -57,12 +57,12 @@
 #define wireHWND HWND
 
 // Imports
-#import "CoreLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MetaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MgaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "ParserLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "GMELib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MgaUtilLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
+#import "CoreLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MetaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MgaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "ParserLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "GMELib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MgaUtilLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
 
 #include "CommonImport.h"
 

Modified: trunk/GME/PartBrowser/stdafx.cpp
==============================================================================
--- trunk/GME/PartBrowser/stdafx.cpp	Fri Apr 20 11:20:34 2012	(r1908)
+++ trunk/GME/PartBrowser/stdafx.cpp	Fri Apr 20 11:20:52 2012	(r1909)
@@ -4,8 +4,8 @@
 
 #include "stdafx.h"
 
-#import "MetaLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MgaLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "GMELib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MgaUtilLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__")
+#import "MetaLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MgaLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "GMELib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MgaUtilLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
 

Modified: trunk/GME/PartBrowser/stdafx.h
==============================================================================
--- trunk/GME/PartBrowser/stdafx.h	Fri Apr 20 11:20:34 2012	(r1908)
+++ trunk/GME/PartBrowser/stdafx.h	Fri Apr 20 11:20:52 2012	(r1909)
@@ -36,11 +36,11 @@
 extern CComModule _Module;
 #include <atlcom.h>
 
-#import "CoreLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MetaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MgaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "GMELib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MgaUtilLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__")
+#import "CoreLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MetaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MgaLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "GMELib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
+#import "MgaUtilLib.tlb" no_implementation no_namespace raw_method_prefix("") high_method_prefix("__") no_registry
 
 // Don't load the MIDL-generated headers
 #define __Core_h__


More information about the gme-commit mailing list