home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / windows / windxy.zip / WINDXF.DEF < prev    next >
Text File  |  1990-11-25  |  833b  |  28 lines

  1. ;module-definition file for generic -- used by link4.exe
  2.  
  3. NAME    windxf       ; application's module name
  4.  
  5. DESCRIPTION 'Sample Microsoft Windows Application'
  6.  
  7. STUB    'WINSTUB.EXE' ; Generates error message if application
  8.                       ; is run without Windows
  9.  
  10. CODE    MOVEABLE      ; code can be moved in memory
  11.  
  12. ;DATA must be MULTIPLE if program can be invoked more than once
  13.  
  14. DATA    MOVEABLE MULTIPLE
  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.     windxfWndProc   @1  ; name of window processing function
  24.         FILEDIALOGPROC  @2  ; File Dialog Proc
  25.         MFNAMEPROC      @3  ; Get Metafile name dialog
  26.         MFPROC          @4  ; Get Metafile file dialog
  27.         About           @5  ; About Box
  28.