drivers.cmd
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:2k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /* rexx */
  2. /*
  3.  * Program: Authenticator Linkage Generator for OS/2
  4.  *
  5.  * Author: Mark Crispin
  6.  * Networks and Distributed Computing
  7.  * Computing & Communications
  8.  * University of Washington
  9.  * Administration Building, AG-44
  10.  * Seattle, WA  98195
  11.  * Internet: MRC@CAC.Washington.EDU
  12.  *
  13.  * Date: 10 June 1999
  14.  * Last Edited: 10 June 1999
  15.  *
  16.  * Copyright 1999 by the University of Washington
  17.  *
  18.  *  Permission to use, copy, modify, and distribute this software and its
  19.  * documentation for any purpose and without fee is hereby granted, provided
  20.  * that the above copyright notice appears in all copies and that both the
  21.  * above copyright notice and this permission notice appear in supporting
  22.  * documentation, and that the name of the University of Washington not be
  23.  * used in advertising or publicity pertaining to distribution of the software
  24.  * without specific, written prior permission.  This software is made available
  25.  * "as is", and
  26.  * THE UNIVERSITY OF WASHINGTON DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED,
  27.  * WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED
  28.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN
  29.  * NO EVENT SHALL THE UNIVERSITY OF WASHINGTON BE LIABLE FOR ANY SPECIAL,
  30.  * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  31.  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, TORT
  32.  * (INCLUDING NEGLIGENCE) OR STRICT LIABILITY, ARISING OUT OF OR IN CONNECTION
  33.  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  34.  *
  35.  */
  36. '@echo off'
  37. /* Erase old authenticators list */
  38. 'if exist linkage.h del linkage.h'
  39. 'if exist linkage.c del linkage.c'
  40. parse arg args
  41. n=words(args)
  42. c_file='linkage.c'
  43. h_file='linkage.h'
  44. call stream c_file, 'C', 'open write'
  45. call stream h_file, 'C', 'open write'
  46. do i=1 to n
  47.   arg=word(args,i)
  48.   call lineout h_file, 'extern DRIVER 'arg'driver;'
  49.   call lineout c_file, '  mail_link (&'arg'driver); /* link in the 'arg' driver */'
  50.   end
  51. call stream h_file, 'C', 'close'
  52. call stream c_file, 'C', 'close'
  53. exit 0