mirror of
https://github.com/amnezia-vpn/win-split-tunnel.git
synced 2026-05-17 08:16:00 +03:00
20 lines
241 B
C++
20 lines
241 B
C++
#pragma once
|
|
|
|
#include <wdm.h>
|
|
#include <wdf.h>
|
|
|
|
namespace eventing
|
|
{
|
|
|
|
struct CONTEXT
|
|
{
|
|
// Pended IOCTL requests for inverted call.
|
|
WDFQUEUE RequestQueue;
|
|
|
|
KSPIN_LOCK EventQueueLock;
|
|
|
|
SLIST_HEADER EventQueue;
|
|
};
|
|
|
|
} // namespace eventing
|