summaryrefslogtreecommitdiffhomepage
path: root/wfpctl/src/extras/cli/util.h
diff options
context:
space:
mode:
authorOdd Stranne <odd@mullvad.net>2018-05-25 11:22:01 +0200
committerOdd Stranne <odd@mullvad.net>2018-05-25 11:22:01 +0200
commit32e1bd67dd67652c89762a327e44ba3d47780c48 (patch)
treef0ae4de1b7d5703a500209f876d35530f3dcb9fc /wfpctl/src/extras/cli/util.h
parent835342bcd9ccffc092825b1c96077f6af1eb9878 (diff)
downloadmullvadvpn-32e1bd67dd67652c89762a327e44ba3d47780c48.tar.xz
mullvadvpn-32e1bd67dd67652c89762a327e44ba3d47780c48.zip
Move wfpctl -> windows/winfw
Diffstat (limited to 'wfpctl/src/extras/cli/util.h')
-rw-r--r--wfpctl/src/extras/cli/util.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/wfpctl/src/extras/cli/util.h b/wfpctl/src/extras/cli/util.h
deleted file mode 100644
index 3919e03422..0000000000
--- a/wfpctl/src/extras/cli/util.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-#include <functional>
-#include <memory>
-#include <string>
-#include "propertylist.h"
-#include "libwfp/filterengine.h"
-#include "libcommon/string.h"
-
-typedef std::function<void(const std::wstring &)> MessageSink;
-
-struct PrettyPrintOptions
-{
- size_t indent;
- bool useSeparator;
-};
-
-void PrettyPrintProperties(MessageSink, PrettyPrintOptions options, const PropertyList &properties);
-
-std::wstring GetArgumentValue(const common::string::KeyValuePairs &arguments, const std::wstring &key);