home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / win100b / wkt100.def < prev    next >
Text File  |  1991-10-19  |  1KB  |  57 lines

  1. ; Definitions file for the Windows Win100 emulator
  2. ;
  3. ; Copyright (c) 1990, 1991 by
  4. ; William S. Hall
  5. ; 3665 Benton Street  #66
  6. ; Santa Clara, CA 95051
  7.  
  8. ; Program name
  9. NAME
  10.  
  11. ; Description string
  12. DESCRIPTION 'Win100 terminal emulator'
  13.  
  14. ; Program to run if run from MS-DOS
  15. STUB 'Winstub.exe'
  16.  
  17. ; Heap and stack sizes
  18. HEAPSIZE    1024
  19. STACKSIZE    4096
  20.  
  21. ; Type of executable
  22. EXETYPE        WINDOWS
  23.  
  24. ; Attributes of code and data segments
  25. CODE    MOVEABLE
  26. DATA    MOVEABLE MULTIPLE
  27.  
  28. ; Attributes of particular segments
  29. SEGMENTS
  30.     _Win100RES PRELOAD MOVEABLE
  31.     _Win100NRES LOADONCALL MOVEABLE DISCARDABLE
  32.     _Win100INIT LOADONCALL MOVEABLE DISCARDABLE
  33.     _VT100 LOADONCALL MOVEABLE DISCARDABLE
  34.     _VT52 LOADONCALL MOVEABLE DISCARDABLE
  35.     _SMARTTERM PRELOAD MOVEABLE DISCARDABLE
  36.  
  37. ; Functions called by Windows
  38. EXPORTS
  39.     MainWndProc        @1
  40.     MainHasResized    @2
  41.     AboutBoxProc    @3
  42.     ColorChange        @4
  43.     ModemBoxProc    @5
  44.     DisplayBoxProc    @6
  45.     GeneralBoxProc    @7
  46.     MiniBoxProc        @8
  47.     CopyBoxProc        @9
  48.     EditFunctionKeys    @10
  49.     LogFileBoxProc    @11
  50.     KeyboardBoxProc    @12
  51.     FontsBoxProc    @13
  52.     GetFixedFontInfo    @14
  53.  
  54. ; Functions exported by smart terminal code
  55.     SmartTermWndProc    @100
  56.     GetFontInfo        @101
  57.