summaryrefslogtreecommitdiff
path: root/general/echo/umdfSocketEcho/Driver/FileContext.h
blob: dbdda2e40e210b97cc0e29b0d0b5205b4282d066 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*++

Copyright (C) Microsoft Corporation, All Rights Reserved

Module Name:

    filecontext.h

Abstract:

    This header file defines the structure type for file  context associated with the file object 

Environment:

    user mode only

Revision History:

--*/


#pragma once

typedef struct _FileContext
{
    CConnection *pConnection ;

    CComPtr<IWDFIoTarget> pFileTarget;

}FileContext;