diff options
| author | Dave Wilson <[email protected]> | 2015-03-17 19:50:07 -0700 |
|---|---|---|
| committer | Dave Wilson <[email protected]> | 2015-03-17 19:50:07 -0700 |
| commit | 97cf5197cf5b882b2c689d8dc2b555f2edf8f418 (patch) | |
| tree | 46f3701832d70b420eb0fc0eb93261f9da45db3f /nfp/net/inc | |
| parent | ef1905bf1e8825bb31120dfb27e0daf3154d859a (diff) | |
Initial publish
Diffstat (limited to 'nfp/net/inc')
| -rw-r--r-- | nfp/net/inc/NetNfp.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/nfp/net/inc/NetNfp.h b/nfp/net/inc/NetNfp.h new file mode 100644 index 00000000..b891313e --- /dev/null +++ b/nfp/net/inc/NetNfp.h @@ -0,0 +1,32 @@ +/*++ + +Copyright (C) Microsoft Corporation, All Rights Reserved + +Module Name: + + NetNfp.h + +Abstract: + + This header contains definitions common to the both the NetNfpProvider.sys + driver and the NetNfpControl.exe. + +Environment: + + User Mode + +--*/ +#pragma once + + +/* 2DD081BE-1294-440B-AB9F-F0E9FDD77FBE */ +const GUID GUID_DEVINTERFACE_NETNFP = + {0x2DD081BE, 0x1294, 0x440B, {0xAB, 0x9F, 0xF0, 0xE9, 0xFD, 0xD7, 0x7F, 0xBE}}; + +#define IOCTL_BEGIN_PROXIMITY CTL_CODE(FILE_DEVICE_UNKNOWN, 0x1000, METHOD_BUFFERED, FILE_ANY_ACCESS) + +struct BEGIN_PROXIMITY_ARGS +{ + WCHAR szName[MAX_PATH]; // Name or IP address +}; + |
