home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pc3270sa.zip / spl2file / spl2file.def < prev    next >
Text File  |  2002-02-28  |  813b  |  27 lines

  1. ;******* SPL2FILE Sample Program Module Definition File (.DEF) ********
  2. ;
  3. ;  The module definition file supplies extra information about the program
  4. ;  module to the LINKER.
  5. ;  Copyright 1993, 1996 IBM Corporation
  6. ;                   All rights reserved.
  7. ;
  8. NAME         SPL2FILE       ; application's module name
  9.  
  10. DESCRIPTION  'SpoolToFile V1.00 Copyright (c) 1993,1996 IBM Corp.'
  11.  
  12. CODE  PRELOAD MOVEABLE DISCARDABLE
  13. DATA  PRELOAD MOVEABLE MULTIPLE
  14.  
  15. HEAPSIZE     1024
  16. STACKSIZE    5120          ; recommended minimum for Windows applications
  17.  
  18. ; All functions that will be called by any Windows routine
  19. ; MUST be exported.
  20.  
  21. EXPORTS
  22.   SpoolToFileWndProc        @1
  23.   About                     @2
  24.   AbortDialogProc           @3
  25.   SpoolToFileOptionsDialog  @4
  26.   PCFilenameDialog          @5
  27.