home *** CD-ROM | disk | FTP | other *** search
- Option Explicit
-
- Type CoopStructure
- CompanyName As String * 24
- Count As Integer
- Amount As Currency
- Total As Single
- End Type
-
- Global Const COOP_MESSAGE = "Coop_Private_Message"
- Global Const THUNDERRTMAIN = "ThunderRTMain"
- Global Const GWW_HINSTANCE = -6
-
- Declare Sub dwCopyDataBynum Lib "dwspydll.dll" Alias "dwCopyData" (ByVal Source&, ByVal dest&, ByVal nCount%)
- Declare Function dwGetAddressForObject& Lib "dwspydll.dll" (object As Any)
-
- Declare Function RegisterWindowMessage% Lib "User" (ByVal frmsgstr$)
- Declare Function EnumWindows% Lib "User" (ByVal lpEnumFunc&, ByVal lParam&)
- Declare Function GetWindowWord% Lib "user" (ByVal hWnd%, ByVal offset%)
- Declare Function SendMessage% Lib "user" (ByVal hWnd%, ByVal wMsg%, ByVal wParam%, lParam As Any)
- Declare Function SendMessageBynum& Lib "User" Alias "SendMessage" (ByVal hWnd%, ByVal wMsg%, ByVal wParam%, ByVal lParam&)
- Declare Function GetWindow% Lib "User" (ByVal hWnd%, ByVal wCmd%)
- Declare Function GetWindowTask% Lib "User" (ByVal hWnd%)
- Declare Function GetClassName% Lib "User" (ByVal hWnd%, ByVal lpstr$, ByVal strlen%)
-
-