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

  1. ;******* PCSAPI 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 1994, 1996 IBM Corporation
  6. ;
  7. ;  Different HEAPSIZE used. ( 1024 bytes )
  8.  
  9.  
  10. NAME    PCSMAIN
  11.  
  12. DESCRIPTION 'PCSAPI Sample Program'
  13.  
  14. CODE  PRELOAD MOVEABLE DISCARDABLE
  15. DATA  PRELOAD MOVEABLE MULTIPLE
  16.  
  17. HEAPSIZE    1024
  18. STACKSIZE   5120
  19. ; All functions that will be called by any Windows routine
  20. ; MUST be exported.
  21.  
  22. EXPORTS
  23.   MainWndProc               @1
  24.   StartDlgProc              @2
  25.   StopDlgProc               @3
  26.   StatusDlgProc             @4
  27.   ProfileDlgProc            @5
  28.   ConnectDlgProc            @6
  29.   DisconnectDlgProc         @7
  30.   SetLinkTimeoutDlgProc     @8
  31.   TitleDlgProc              @9
  32.   About                     @10
  33.