You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4net-dev@logging.apache.org by ni...@apache.org on 2006/03/24 18:08:20 UTC

svn commit: r388581 - /logging/log4net/trunk/src/Util/SystemInfo.cs

Author: nicko
Date: Fri Mar 24 09:08:12 2006
New Revision: 388581

URL: http://svn.apache.org/viewcvs?rev=388581&view=rev
Log:
Fix for LOG4NET-70. Changed reference from coredll.dll to CoreDll.dll

Modified:
    logging/log4net/trunk/src/Util/SystemInfo.cs

Modified: logging/log4net/trunk/src/Util/SystemInfo.cs
URL: http://svn.apache.org/viewcvs/logging/log4net/trunk/src/Util/SystemInfo.cs?rev=388581&r1=388580&r2=388581&view=diff
==============================================================================
--- logging/log4net/trunk/src/Util/SystemInfo.cs (original)
+++ logging/log4net/trunk/src/Util/SystemInfo.cs Fri Mar 24 09:08:12 2006
@@ -1062,16 +1062,16 @@
 				public const uint PROV_RSA_FULL = 1;
 				public const uint CRYPT_VERIFYCONTEXT = 0xf0000000;
 
-				[DllImport("coredll.dll")] 
+				[DllImport("CoreDll.dll")] 
 				public static extern bool CryptAcquireContext(
 					ref IntPtr phProv, string pszContainer, string pszProvider,
 					uint dwProvType, uint dwFlags);
 
-				[DllImport("coredll.dll")] 
+				[DllImport("CoreDll.dll")] 
 				public static extern bool CryptReleaseContext( 
 					IntPtr hProv, uint dwFlags);
 
-				[DllImport("coredll.dll")] 
+				[DllImport("CoreDll.dll")] 
 				public static extern bool CryptGenRandom(
 					IntPtr hProv, int dwLen, byte[] pbBuffer);
 			}