Ignore:
Timestamp:
Jun 8, 2002, 1:40:15 PM (23 years ago)
Author:
sandervl
Message:

Export OSLibDosDevIOCtl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/hmdisk.cpp

    r8580 r8600  
    1 /* $Id: hmdisk.cpp,v 1.46 2002-06-06 11:31:12 sandervl Exp $ */
     1/* $Id: hmdisk.cpp,v 1.47 2002-06-08 11:40:14 sandervl Exp $ */
    22
    33/*
     
    2020#include <win\winioctl.h>
    2121#include <win\ntddscsi.h>
    22 #include <win\aspi.h>
     22#include <win\wnaspi32.h>
    2323#include "oslibdos.h"
    2424#include "osliblvm.h"
     
    3636//Converts BCD to decimal; doesn't check for illegal BCD nrs
    3737#define BCDToDec(a) ((a >> 4) * 10 + (a & 0xF))
     38
    3839
    3940typedef struct
     
    14711472            cdiocmd.flDirection = CMDDIR_OUTPUT|CMDDIR_INPUT;;
    14721473            break;
     1474        default:
     1475            dprintf(("Invalid DataIn (%d)!!", pPacket->DataIn));
     1476            SetLastError(ERROR_INVALID_PARAMETER);
     1477            return FALSE;
    14731478        }
    14741479
Note: See TracChangeset for help on using the changeset viewer.