home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ddkx86v5.zip / DDKX86 / SRC / DEV / PCMCIA / SOCKET / SSMSG.ASM < prev    next >
Assembly Source File  |  1995-04-14  |  4KB  |  90 lines

  1. ;*DDK*************************************************************************/
  2. ;
  3. ; COPYRIGHT (C) Award Software International Inc., 1994
  4. ; COPYRIGHT    Copyright (C) 1995 IBM Corporation
  5. ;
  6. ;    The following IBM OS/2 WARP source code is provided to you solely for
  7. ;    the purpose of assisting you in your development of OS/2 WARP device
  8. ;    drivers. You may use this code in accordance with the IBM License
  9. ;    Agreement provided in the IBM Device Driver Source Kit for OS/2. This
  10. ;    Copyright statement may not be removed.;
  11. ;*****************************************************************************/
  12.                 name    SSMSG
  13.                 page    60, 132
  14.                 title   'SSMSG'
  15. ;******************************************************************************
  16. ;*
  17. ;*                            File SSMSG.ASM
  18. ;*
  19. ;*                              Message file
  20. ;*
  21. ;*
  22. ;*
  23. ;******************************************************************************
  24.  
  25.                 include ssmsg.inc           ; Message public definitions
  26.  
  27.  
  28. ;*****************************************************************************
  29. ;*                         --- Segment sResData ---
  30. ;*****************************************************************************
  31. sBegin          ResData
  32.  
  33. VendorInfo      db      'PC Card Socket Services', msgCR, msgLF
  34.                 db      '(C) Copyright 1992 - 1994 by Award Software Inc.', msgCR, msgLF
  35.                 db      'All rights reserved.', msgCR, msgLF
  36.                 db      0
  37.  
  38. sEnd            ResData
  39.  
  40. ;*****************************************************************************
  41. ;*                         --- Segment InitData ---
  42. ;*****************************************************************************
  43. sBegin          InitData
  44.  
  45. SignonMsg       db      'Socket Services Level 2.10 - Release 2.0', msgCR, msgLF
  46.                 db      '(C) Copyright 1992-1994 by Award Software Inc.', msgCR, msgLF
  47.                 db      'All rights reserved.', msgCR, msgLF
  48.                 db      msgLF
  49.                 db      0
  50.  
  51. NoAdapterMsg    db      'ERROR: No PC Card adapter present.', msgCR, msgLF
  52.                 db      '       Socket Services installation aborted', msgCR, msgLF
  53.                 db      msgLF
  54.                 db      0
  55.  
  56. SuccessMsg      db      'Number of PC Card adapters found: '
  57. chAdapters      db      'x', msgCR, msgLF
  58.                 db      msgLF
  59.                 db      0
  60.  
  61. CSPresentMsg    db      'ERROR: Card Services are not installed.', msgCR, msgLF
  62.                 db      '       Socket Services installation aborted.', msgCR, msgLF
  63.                 db      '       Load Socket Services after Card Services.', msgCR, msgLF
  64.                 db      0
  65. FailAddMsg      db      'ERROR: Cannot add sockets to Card Services.', msgCR, msgLF
  66.                 db      '       Socket Services installation aborted.', msgCR, msgLF, 0
  67.  
  68. SyntaxMsg       db      'ERROR: Cannot interpret command line statement(s): ', 0
  69.  
  70. HelpMsg         db      'Socket Services provides a standard interface between PC Card adapter and', msgCR, msgLF
  71.                 db      'application software. This version of Socket Services provides support for', msgCR, msgLF
  72.  
  73.                 db      'Intel PCIC step B and compatible PC Card Adapters', msgCR, msgLF, msgLF
  74.                 db      'Syntax: SSPCIC [/H] [/A:nnnn] [/E]', msgCR, msgLF
  75.                 db      ' where: /H      - Print this help text', msgCR, msgLF
  76.                 db      '        /A:nnnn - Specify adapter address between 100h and 3F0h', msgCR, msgLF
  77.                 db      '                  (default: 3E0h)', msgCR, msgLF
  78.                 db      '        /E      - Enable screen output (default: Silent)', msgCR, msgLF
  79.                 db      0
  80.  
  81. SyntaxHelpMsg   db      'Type SSPCIC /h for help', msgCR, msgLF, 0
  82.  
  83. InvalidParMsg   db      'Invalid parameter value: ', 0
  84. EndOfMsg        db      39, msgCR, msgLF, 0
  85.  
  86.  
  87. sEnd            InitData
  88.  
  89.                 END
  90.