home *** CD-ROM | disk | FTP | other *** search
/ Chestnut's Multimedia Mania / MM_MANIA.ISO / players / winbeep / winbeep.def < prev    next >
Text File  |  1990-08-10  |  590b  |  24 lines

  1. NAME    WinBeep
  2.  
  3. DESCRIPTION 'Test of Voice Master & Windows'
  4.  
  5. STUB    'winstub.EXE'    ; Previously I had a DOS version of this 
  6.             ; of this program here, so it could be
  7.             ; run DOS or windows.
  8.  
  9. CODE    MOVEABLE      ; code can be moved in memory
  10.  
  11. ;DATA must be MULTIPLE if program can be invoked more than once
  12.  
  13. DATA    MOVEABLE MULTIPLE
  14. EXETYPE WINDOWS
  15.  
  16. HEAPSIZE  1024
  17. STACKSIZE 4096  ; recommended minimum for Windows applications
  18.  
  19. ; All functions that will be called by any Windows routine
  20. ; MUST be exported.
  21.  
  22. EXPORTS
  23.     winbeepWndProc   @1  ; name of window processing function
  24.