home *** CD-ROM | disk | FTP | other *** search
/ Windoware / WINDOWARE_1_6.iso / source / 3dbutn / odbutton.def < prev    next >
Text File  |  1991-12-06  |  813b  |  23 lines

  1. ; Copyright (c) 1991 Microsoft Corporation. All rights reserved.
  2.  
  3. NAME    ODButton       ; application's module name
  4. DESCRIPTION 'Owner-Draw Button Example'
  5. EXETYPE WINDOWS       ; required for all Windows applications
  6. STUB    'WINSTUB.EXE' ; Generates error message if application
  7.                       ; is run without Windows
  8.  
  9. CODE    PRELOAD MOVEABLE DISCARDABLE   ; code can be moved in memory
  10.  
  11. ;DATA must be MULTIPLE if program can be invoked more than once
  12. DATA    PRELOAD MOVEABLE MULTIPLE
  13.  
  14. HEAPSIZE  1024
  15. STACKSIZE 5120  ; recommended minimum for Windows applications
  16.  
  17. ; All functions that will be called by any Windows routine
  18. ; MUST be exported.
  19.  
  20. EXPORTS
  21.     MainWndProc      @1  ; name of window processing function
  22.     About            @2  ; name of "About" processing function
  23.