mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-22 20:40:58 +00:00
Remove references to unused function GetWindowDC.
This commit is contained in:
parent
f77734ae60
commit
04ef9fc262
|
@ -462,9 +462,6 @@ namespace OpenTK.Platform.Windows
|
||||||
[DllImport("user32.dll")]
|
[DllImport("user32.dll")]
|
||||||
internal static extern IntPtr GetDC(IntPtr hwnd);
|
internal static extern IntPtr GetDC(IntPtr hwnd);
|
||||||
|
|
||||||
[DllImport("user32.dll")]
|
|
||||||
internal static extern IntPtr GetWindowDC(IntPtr hwnd);
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
///
|
///
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -77,7 +77,7 @@ namespace OpenTK.Platform.Windows
|
||||||
{
|
{
|
||||||
dc = Functions.GetDC(this.Handle);
|
dc = Functions.GetDC(this.Handle);
|
||||||
}
|
}
|
||||||
//dc = Functions.GetWindowDC(this.Handle);
|
|
||||||
return dc;
|
return dc;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue