GetModuleHandle() private method

private GetModuleHandle ( string lpModuleName ) : IntPtr
lpModuleName string
return System.IntPtr
Beispiel #1
0
 private static object _DestroyWindow(IntPtr hwnd, string className)
 {
     Utility.SafeDestroyWindow(ref hwnd);
     NativeMethods.UnregisterClass(className, NativeMethods.GetModuleHandle(null));
     return(null);
 }