home *** CD-ROM | disk | FTP | other *** search
- /*DDK*************************************************************************/
- /* */
- /* COPYRIGHT Copyright (C) 1995 IBM Corporation */
- /* */
- /* The following IBM OS/2 WARP source code is provided to you solely for */
- /* the purpose of assisting you in your development of OS/2 WARP device */
- /* drivers. You may use this code in accordance with the IBM License */
- /* Agreement provided in the IBM Device Driver Source Kit for OS/2. This */
- /* Copyright statement may not be removed. */
- /* */
- /*****************************************************************************/
- /*static char *SCCSID = "src/dev/dasd/os2scsi/scstubs.c, scsy, ddk_subset, b_bdd.032 93/03/19";*/
- /**************************************************************************
- *
- * SOURCE FILE NAME = SCSTUBS.C
- *
- * DESCRIPTIVE NAME = OS2SCSI.DMD - OS/2 SCSI.SYS Emulation
- *
- *
- *
- * VERSION = V2.0
- *
- * DATE
- *
- * DESCRIPTION : Resident entry points to swappable routines
- *
- *
- *
- */
-
- #define INCL_NOBASEAPI
- #define INCL_NOPMAPI
- #include "os2.h"
- #include "error.h"
- #include "strat2.h"
- #include "reqpkt.h"
- #include "scb.h"
- #include "iorb.h"
- #include "scsi.h"
- #include "scscsi.h"
- #include "scgen.h"
- #include "scproto.h"
- #include "dhcalls.h"
-
- /*-----------------------*/
- /* Resident Entry Points */
- /*-----------------------*/
-
-
- USHORT near CmdErr(pRPH)
- PRPH pRPH;
- {
- return(STDON + STERR + ERROR_I24_BAD_COMMAND);
- }
-
-
- /*-----------------------------------------*/
- /* Near Entry Points to swappable routines */
- /*-----------------------------------------*/
-
- USHORT near DriveGenIOCtl(EntryType, pRPH)
- USHORT EntryType;
- PRPH pRPH;
- {
- return(f_DriveGenIOCtl(EntryType, pRPH));
- }
-
-
-
-