add debugging to profilefilter & window class

This commit is contained in:
Jonathan Jenne
2019-10-21 14:07:47 +02:00
parent a767b9bcc0
commit 6b31549a30
3 changed files with 309 additions and 174 deletions

View File

@@ -127,6 +127,10 @@ Public Class NativeMethods
Public Top As Integer
Public Right As Integer
Public Bottom As Integer
Public Overrides Function ToString() As String
Return String.Format("Top: {0}, Bottom: {1}, Left: {2}, Right: {3}", Top, Bottom, Left, Right)
End Function
End Structure
<System.Runtime.InteropServices.StructLayout(Runtime.InteropServices.LayoutKind.Sequential)>