home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 4 Drivers / 04-Drivers.zip / scsiopt2.zip / proto.h < prev    next >
C/C++ Source or Header  |  1997-12-11  |  1KB  |  63 lines

  1. /*
  2.  * $Source: e:/source/driver/perf/RCS/proto.h,v $
  3.  * $Revision: 1.3 $
  4.  * $Date: 1997/12/11 01:53:38 $
  5.  * $Locker:  $
  6.  *
  7.  * Function prototyping
  8.  *
  9.  * $Log: proto.h,v $
  10.  * Revision 1.3  1997/12/11 01:53:38  vitus
  11.  * - added prototype of SaveMessage()
  12.  *
  13.  * Revision 1.2  1997/12/06 00:42:49  vitus
  14.  * - enabled support for WatCom C
  15.  *
  16.  * Revision 1.1  1997/10/15 00:54:42  vitus
  17.  * Initial revision
  18.  * --------------------------------------------
  19.  * Author: Vitus Jensen, 2:2474/424
  20.  */
  21.  
  22.  
  23. #if defined(_MSC_VER)
  24. /* MS-C inline functions (these take only near pointer!)
  25.  * OBS: don't forget to compile w/ inlining (at least -Oi) */
  26.  
  27. void     _disable(void);
  28. void     _enable(void);
  29. #endif
  30.  
  31.  
  32. /* Module: str1.C */
  33.  
  34. extern void    NEAR _Cdecl Strategy();
  35.  
  36.  
  37. /* Module: ioctl.c */
  38.  
  39. extern void    NEAR SaveMessage(void);
  40.  
  41.  
  42. /* Module: iorb.c.  No real filter, no code. */
  43.  
  44.  
  45. /* Module: init.c */
  46.  
  47. extern USHORT    NEAR InitBase(PRPINITIN pRPI);
  48.  
  49.  
  50. /* Module: printk.c */
  51.  
  52. extern void    NEAR sprintk(char _far *outs,const char _far *fmt,...);
  53.  
  54. /* Module: printk.c */
  55.  
  56. extern void    NEAR sprintk(char _far *outs,const char _far *fmt,...);
  57.  
  58. #if defined(DEBUG)
  59. /* Module: dprintf.asm */
  60.  
  61. extern void NEAR _Cdecl    dprintf(char FAR * msg,...);
  62. #endif
  63.