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/os2dasd/dmheader.c, dsdm, ddk_subset, b_bdd.032 93/03/20";*/
- #define SCCSID "src/dev/dasd/os2dasd/dmheader.c, dsdm, ddk_subset, b_bdd.032 93/03/20"
- /**************************************************************************
- *
- * SOURCE FILE NAME = DMHEADER.C
- *
- * DESCRIPTIVE NAME = OS2DASD.DMD - OS/2 DASD Device Manager
- *
- *
- *
- * VERSION = V2.0
- *
- * DATE
- *
- * DESCRIPTION : Device driver header for OS/2 DASD Manager
- *
- *
- */
-
- #define INCL_NOBASEAPI
- #define INCL_NOPMAPI
- #define INCL_ERROR_H
-
- #include "os2.h"
- #include "devhdr.h"
- /*-------------------------------------------------------------*/
- /* Disk Device Driver Header */
- /* */
- /* This must be at the beginning of the data segment */
- /* AND MUST NOT BE MOVED. */
- /*-------------------------------------------------------------*/
-
- VOID NEAR DMStrat1 (void);
-
- struct SysDev DiskDDHeader =
- {
- -1L, /* Pointer to next DD Header */
- DEV_NON_IBM | DEVLEV_1 | DEV_30, /* Device attribute */ /*@V56363*/
- (USHORT) DMStrat1, /* Offset to Strategy routine */
- 0, /* Offset to IDC Entry Point */
- " Disk DD", /* Device Name */
- 0, /* Protect mode CS of strategy EP */
- 0, /* Protect mode DS of strategy EP */
- 0,
- 0
- };
-