home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / DOS_GG / COMCAT / VOL95.ARJ / VOL9517 < prev    next >
Text File  |  1992-01-08  |  4KB  |  88 lines

  1.  
  2. O S / 2   - P r o g r a m m a T h e e k volume 9517
  3.  
  4. Source: Fernwood
  5.  
  6. Titel: Fortune Cookies, Communications, PC Tools etc.
  7.  
  8. Number  Name            Size    Date     Comments
  9.         CATALOG  O17      772   2-07-90 This file
  10. 9517.01 OS2BSPD  ZIP     9233   7-31-88 Set keyboard speed
  11. 9517.02 OS2COM1  ZIP    13398   6-08-89 Communications  routines
  12. 9517.03 OS2COM14 ZIP    21694  10-04-88 Simple DC program /w  C source
  13. 9517.04 OS2COOKI ZIP    62834   9-14-89 Fortune Cookies....
  14. 9517.05 OS2DIR   ZIP     8680   2-17-89 Directory display  (non-PM)
  15. 9517.06 OS2H     ZIP    16711   8-22-88 OS2.H
  16. 9517.07 OS2HELLO ZIP     1377   2-20-88 Short .ASM demo
  17. 9517.08 OS2LOOK  ZIP    40330  11-13-88 ASCII file viewer  1.1 (bound)
  18. 9517.09 OS2TOOLS ZIP    52752   9-20-88 WHEREIS, XDIR,  FINDSTR
  19. 9517.10 OS2TREE  ZIP     6483   1-16-88 SeeTree - display  DIR tree
  20. 9517.11 OS2UTL10 ZIP    96166   7-30-89 Great collection of  PC Tools
  21.         VOL9517  ABS     2688   2-07-90 Disk abstract by M.
  22.                13 File(s)     21504 bytes free on volume  DOSGG9517
  23.  
  24.  
  25.                         * * *  H E L L O  * * *
  26.  
  27.        This program will run only under OS/2 !! It's the same
  28. famous file that has been used for many first programs. I  used it here to
  29. show how easy it is to write routines in ASM  with OS/2. Hello.exe shows the
  30. basic start and exit routines  as well as how to call the OS/2 API calls.
  31.  
  32. OS2Dir
  33. ------
  34.  
  35. This small utility displays all available OS/2 directory information, such
  36. as file name, file extension, file size, file allocation overhead (unused
  37. cluster space), file attributes, date and time of creation,  last write and
  38. last access. Some summary information is also displayed.
  39.  
  40. Syntax:
  41.  
  42.  - - - - - - -
  43. OS2DIR [directory] [directory] [...] [>output]
  44.  
  45. ** XU - (c) 1989 eXcellent Utilities by Noonan, Partain and  Brown **
  46.  
  47.  Files contained in the package are:
  48.  
  49. XU.DOC          You are reading it
  50. FL.EXE          File Locate (Bound)
  51. FLP.EXE         File Locate (Protected-mode only)
  52. SC.EXE          Set Color (Bound)
  53. SCP.EXE         Set Colors (Protected-mode only)
  54. DIS.EXE         Display Screen Image (Bound)
  55. DISP.EXE        Display Screen Image (Protected-mode only)
  56. KEYRATEP.EXE    Set keyboard rate (Protected-mode only)
  57. KEYRATER.EXE    Set keyboard rate (DOS-mode only)
  58. ASK.EXE         ASK (Bound)
  59. ASKP.EXE        ASK (Protected-mode only)
  60. GETVER.EXE      Get version (DOS-mode only)
  61. X.BAT           Used with XCD for DOS
  62. X.CMD           Used with XCD for OS/2
  63. XCD.EXE         eXcellent Change Directory (Bound)
  64. XCDP.EXE        eXcellent Change Directory (Protected-mode  only)
  65.  
  66. *****
  67.  
  68. OS2Comm.c - a simple OS/2 comm program - version 1.4   9/17/88
  69.  
  70. OS2Comm is the program which accompanies my article "OS/2
  71. Communications" in the Byte Magazine IBM Special Issue 1988.   I've
  72. included two versions in this ARC, one (version 1.2) is  identical to the
  73. listing in the magazine, the other (version 1.4) has several additional
  74. features. OS2Comm is intended as an example for those who wish to read
  75. (and improve!) its code; it is not really intended to be  very useable as
  76. is.
  77.  
  78. This program uses the multitasking features of OS/2 and the  OS/2
  79.  
  80. communications device driver to provide a simple communications
  81. function.  It is not intended to provide complete  communications
  82. capabilities, instead it is intended to demonstrate the use  of the comm
  83. device driver under OS/2.  In particular, it does not  provide any
  84. dialing scripts, or other common features of communications  software.
  85. It does provide a simple glass TTY terminal function.  It  also provides
  86. a simple capture file, which will capture every byte which  comes in from
  87. the COM port.  There is no provision made to allow selective  capture,though.
  88.