home *** CD-ROM | disk | FTP | other *** search
/ Windoware / WINDOWARE_1_6.iso / source / getwlst / vbswglbl.bas < prev    next >
BASIC Source File  |  1991-07-17  |  742b  |  17 lines

  1. Declare Function SendMessage Lib "User" (ByVal hWnd As Integer, ByVal wMsg As Integer, ByVal wParam As Integer, lParam As Any) As Long
  2. Declare Function PostMessage Lib "User" (ByVal hWnd As Integer, ByVal wMsg As Integer, ByVal wParam As Integer, lParam As Any) As Integer
  3. Global Const WM_GETTEXT = &HD
  4. Global Const WM_SYSCOMMAND = &H112
  5. Global Const SC_RESTORE = &HF120
  6. Global Const SC_CLOSE = &HF060
  7.  
  8. Declare Function GetWindowList Lib "Getwlst.dll" (hWndArray As Integer, ByVal nArrayMax As Integer, ByVal nMode As Integer) As Integer
  9.  
  10. ' Constant declarations for nMode
  11. '--------------------------------
  12. Global Const YOYO = 0     'Yer On Yer Own...
  13. Global Const ALLVIS = 1
  14. Global Const TOPONLY = 2
  15. Global Const SAFEST = 3
  16.  
  17.