Async Data Loading, use ConfigManager
This commit is contained in:
@@ -2,13 +2,13 @@
|
||||
|
||||
Public Class clsWINDOWSApi
|
||||
Private Declare Function GetForegroundWindow Lib "user32.dll" Alias "GetForegroundWindow" () As IntPtr
|
||||
Private Declare Auto Function GetWindowText Lib "user32.dll" (ByVal hWnd As System.IntPtr, ByVal lpString As System.Text.StringBuilder, ByVal cch As Integer) As Integer
|
||||
Private Declare Auto Function GetWindowText Lib "user32.dll" (ByVal hWnd As IntPtr, ByVal lpString As System.Text.StringBuilder, ByVal cch As Integer) As Integer
|
||||
Private Declare Function GetWindowThreadProcessId Lib "user32.dll" (ByVal hwnd As IntPtr, ByRef lpdwProcessID As Integer) As Integer
|
||||
Private Declare Function GetWindowText Lib "user32.dll" Alias "GetWindowTextA" (ByVal hWnd As IntPtr, ByVal WinTitle As String, ByVal MaxLength As Integer) As Integer
|
||||
Private Declare Function GetWindowTextLength Lib "user32.dll" Alias "GetWindowTextLengthA" (ByVal hwnd As Int32) As Integer
|
||||
|
||||
Private Shared Function GetClassName(ByVal hWnd As System.IntPtr, _
|
||||
ByVal lpClassName As System.Text.StringBuilder, _
|
||||
Private Shared Function GetClassName(ByVal hWnd As IntPtr,
|
||||
ByVal lpClassName As System.Text.StringBuilder,
|
||||
ByVal nMaxCount As Integer) As Integer
|
||||
' Leave function empty
|
||||
End Function
|
||||
|
||||
Reference in New Issue
Block a user