[commit] r1570 - trunk/GME/Gme

GMESRC Repository Notifications gme-commit at list.isis.vanderbilt.edu
Fri Sep 30 09:52:05 CDT 2011


Author: ksmyth
Date: Fri Sep 30 09:52:04 2011
New Revision: 1570

Log:
Dont use auto_search, since e.g. Core.dll may be registered, then deleted, and not recompiled by the time were compiling GME.vcxproj

Modified:
   trunk/GME/Gme/StdAfx.cpp
   trunk/GME/Gme/StdAfx.h

Modified: trunk/GME/Gme/StdAfx.cpp
==============================================================================
--- trunk/GME/Gme/StdAfx.cpp	Fri Sep 30 09:51:54 2011	(r1569)
+++ trunk/GME/Gme/StdAfx.cpp	Fri Sep 30 09:52:04 2011	(r1570)
@@ -4,6 +4,6 @@
 
 #include "stdafx.h"
 
-#import "MgaUtilLib.tlb" implementation_only auto_search no_namespace no_search_namespace raw_method_prefix("") high_method_prefix("__")
+#import "MgaUtilLib.tlb" implementation_only no_namespace raw_method_prefix("") high_method_prefix("__")
 
 

Modified: trunk/GME/Gme/StdAfx.h
==============================================================================
--- trunk/GME/Gme/StdAfx.h	Fri Sep 30 09:51:54 2011	(r1569)
+++ trunk/GME/Gme/StdAfx.h	Fri Sep 30 09:52:04 2011	(r1570)
@@ -50,12 +50,12 @@
 
 
 // Imports
-#import "CoreLib.tlb" no_implementation auto_search no_namespace no_search_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MetaLib.tlb" no_implementation auto_search no_namespace no_search_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MgaLib.tlb" no_implementation auto_search no_namespace no_search_namespace raw_method_prefix("") high_method_prefix("__")
-#import "ParserLib.tlb" no_implementation auto_search no_namespace no_search_namespace raw_method_prefix("") high_method_prefix("__")
-#import "GMELib.tlb" no_implementation auto_search no_namespace no_search_namespace raw_method_prefix("") high_method_prefix("__")
-#import "MgaUtilLib.tlb" no_implementation auto_search no_namespace no_search_namespace raw_method_prefix("") high_method_prefix("__")
+#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("__")
 
 #include "CommonImport.h"
 


More information about the gme-commit mailing list