home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Power Pack / Visual_Basic4_Power_Pack.bin / vb4files / scentbns / bndemo2.def < prev    next >
Encoding:
Text File  |  1996-11-20  |  709 b   |  25 lines

  1. ;****************************************************************************
  2. ;**
  3. ;** BNDEMO2.DEF - Link Definition File
  4. ;**
  5. ;** Steven R Clabaugh
  6. ;** SRC Enterprises
  7. ;**
  8. ;****************************************************************************
  9.  
  10. NAME         BNDEMO2       ; application's module name
  11.  
  12. DESCRIPTION  'Button Demo2'
  13.  
  14. EXETYPE      WINDOWS       ; required for all Windows applications
  15.  
  16. STUB         'WINSTUB.EXE' ; Generates error message if application
  17.                            ; is run without Windows
  18.  
  19. CODE  PRELOAD MOVEABLE DISCARDABLE
  20.  
  21. DATA  PRELOAD MOVEABLE MULTIPLE
  22.  
  23. HEAPSIZE     1024
  24. STACKSIZE    5120          ; recommended minimum for Windows applications
  25.