home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 21.ddi / GLOBAL.BA_ / GLOBAL.bin
Encoding:
Text File  |  1993-02-14  |  674 b   |  25 lines

  1. '*** Global Constants ***
  2. Global Const OFN_FILEMUSTEXIST = &H1000&
  3. Global Const OFN_READONLY = &H4&
  4.  
  5. Global Const MCI_APP_TITLE = "MCI Control Application"
  6.  
  7. ' These constants are defined in mmsystem.h.
  8. Global Const MCIERR_INVALID_DEVICE_ID = 30257
  9. Global Const MCIERR_DEVICE_OPEN = 30263
  10. Global Const MCIERR_CANNOT_LOAD_DRIVER = 30266
  11. Global Const MCIERR_UNSUPPORTED_FUNCTION = 30274
  12. Global Const MCIERR_INVALID_FILE = 30304
  13.  
  14. Global Const MCI_MODE_NOT_OPEN = 524
  15. Global Const MCI_MODE_PLAY = 526
  16.  
  17. Global Const MCI_FORMAT_MILLISECONDS = 0
  18.  
  19. Declare Function GetFocus Lib "User" () As Integer
  20.  
  21.  
  22. '*** Global Variables ***
  23. Global DialogCaption As String
  24.  
  25.