/*++

Copyright (c) 1998  Microsoft Corporation All Rights Reserved
 
Module Name:

    dmademo.h

Abstract:   

Author:

    Abdul Ismail (Compaq Computer Corp.)

Environment:

    Win32 console application

Revision History:

    3-26-99  Peter Lee (Compaq Computer Corp.) Update to use device management apis.

--*/


#ifndef _DMADEMO_H
#define _DMADEMO_H


// interface GUID for device
// {7377DB61-E3CD-11d2-8A3F-0000F8784422}
DEFINE_GUID(GUID_DUMMYDMA_INTERFACE, 
0x7377db61, 0xe3cd, 0x11d2, 0x8a, 0x3f, 0x0, 0x0, 0xf8, 0x78, 0x44, 0x22);

// IOCTL definition
#define IOCTL_DUMMY_DMA	 CTL_CODE( FILE_DEVICE_UNKNOWN, 0xB00, METHOD_IN_DIRECT, FILE_ANY_ACCESS )


#endif // _DMADEMO_H



