- This topic has 3 replies, 2 voices, and was last updated 16 years ago by Ghost.
-
AuthorPosts
-
February 8, 2008 at 1:58 pm #190353stevenMember
i dont know how locohacer declare the functions .. on the declaration section but i think there’s a way to do that easly but i dont know how .. 🙄
February 8, 2008 at 2:06 pm #190356GhostMember[tt:2085xxsq]Dim penis AsString[/tt:2085xxsq]?
February 8, 2008 at 2:17 pm #190355stevenMemberPublic Declare Function GetWindowText Lib “user32” Alias “GetWindowTextA” (ByVal hWnd As Long, ByVal lpString As String, ByVal cch As Long) As Long
Public Declare Function GetParent& Lib “user32” (ByVal hWnd As Long)
Public Declare Function IsWindowVisible& Lib “user32” (ByVal hWnd As Long)
Public Declare Function EnumWindows& Lib “user32” (ByVal lpEnumFunc As Long, ByVal lParam As Long)
Public Declare Function SendMessageByString Lib “user32” Alias “SendMessageA” (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As String) As Long
Public Declare Function SendMessageLong& Lib “user32” Alias “SendMessageA” (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long)
Public Declare Function FindWindow Lib “user32” Alias “FindWindowA” (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Public Declare Function FindWindowEx Lib “user32” Alias “FindWindowExA” (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
Public Declare Function GetWindow Lib “user32” (ByVal hWnd As Long, ByVal wCmd As Long) As LongFebruary 8, 2008 at 5:54 pm #190354GhostMemberWait, so what’s your question?
-
AuthorPosts
Related
- You must be logged in to reply to this topic.