dbghelp.dll support!

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1047 21ef857c-d57f-4fe0-8362-d861dc6d29cd
This commit is contained in:
wj32
2009-04-12 10:53:57 +00:00
parent ce60e5149c
commit 4fa98825df
21 changed files with 809 additions and 579 deletions
+3 -3
View File
@@ -6,13 +6,13 @@
public class Singleton<T>
where T : class, new()
{
private object _instanceLock = new object();
private T _instance = null;
private static object _instanceLock = new object();
private static T _instance = null;
/// <summary>
/// The single instance of the type.
/// </summary>
public T Instance
public static T Instance
{
get
{