summaryrefslogtreecommitdiff
path: root/windows/runner/utils.h
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2023-12-05 22:40:01 +0200
committeromagdy7 <omar.professional8777@gmail.com>2023-12-05 22:40:01 +0200
commit953b5ce3ad7e933c6f008202346fe5bf2985bf9e (patch)
tree45cbfd660ea224ba095e37292a731522eac5be2f /windows/runner/utils.h
parent3722890dfb243288417d0bbce88bdca99ec7493a (diff)
downloadcarpool-953b5ce3ad7e933c6f008202346fe5bf2985bf9e.tar.xz
carpool-953b5ce3ad7e933c6f008202346fe5bf2985bf9e.zip
Removed uncessary folders for github
Diffstat (limited to 'windows/runner/utils.h')
-rw-r--r--windows/runner/utils.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/windows/runner/utils.h b/windows/runner/utils.h
deleted file mode 100644
index 3879d54..0000000
--- a/windows/runner/utils.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef RUNNER_UTILS_H_
-#define RUNNER_UTILS_H_
-
-#include <string>
-#include <vector>
-
-// Creates a console for the process, and redirects stdout and stderr to
-// it for both the runner and the Flutter library.
-void CreateAndAttachConsole();
-
-// Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string
-// encoded in UTF-8. Returns an empty std::string on failure.
-std::string Utf8FromUtf16(const wchar_t* utf16_string);
-
-// Gets the command line arguments passed in as a std::vector<std::string>,
-// encoded in UTF-8. Returns an empty std::vector<std::string> on failure.
-std::vector<std::string> GetCommandLineArguments();
-
-#endif // RUNNER_UTILS_H_