diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-09-15 11:21:31 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-09-15 11:21:31 +0200 |
commit | 0cbfbe129934976359460fdbe69fb97632d81d24 (patch) | |
tree | 3d4685fc1f02244c80d4f5de2fa6c80fae94a425 /ksocket/ksocket.h | |
parent | 37d1e657e5e79bc240ea036cfb8da377b1640490 (diff) |
Added C++ (`ksocket/ksocket.hpp`) Socket wrapper classes.
* another flatbuffers example (WiP!)
* Makefile improvements
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'ksocket/ksocket.h')
-rw-r--r-- | ksocket/ksocket.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/ksocket/ksocket.h b/ksocket/ksocket.h index 0a6717e..e44035b 100644 --- a/ksocket/ksocket.h +++ b/ksocket/ksocket.h @@ -1,5 +1,12 @@ -#pragma once -#include "wsk.h" +#ifndef KSOCKET_H +#define KSOCKET_H 1 + +#ifdef BUILD_USERMODE +#error \ + "This file should only be included if building for kernel mode! Include <ksocket/ksocket.hpp> wrapper instead." +#endif + +#include <ksocket/wsk.h> #include <ntddk.h> #define STATUS_UNSUPPORTED_WINDOWS_VERSION \ @@ -97,3 +104,5 @@ KsRecvFrom(_In_ PKSOCKET Socket, _In_ PVOID Buffer, _Inout_ PULONG Length, #ifdef __cplusplus } #endif + +#endif |