mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 10:14:44 +00:00
16 lines
263 B
C++
16 lines
263 B
C++
//
|
|
// Copyright (C) Microsoft. All rights reserved.
|
|
//
|
|
#ifndef _FXIRPUM_HPP_
|
|
#define _FXIRPUM_HPP_
|
|
|
|
typedef struct {
|
|
ULONG Type;
|
|
MdIrp Irp;
|
|
PIO_CSQ Csq;
|
|
} MdIoCsqIrpContext, *PMdIoCsqIrpContext;
|
|
|
|
#include "FxIrp.hpp"
|
|
|
|
|
|
#endif // _FXIRPUM_HPP_
|