From 36fc664369f3319e63d57bf2d344374a54ce48f0 Mon Sep 17 00:00:00 2001 From: Alberto Date: Wed, 11 Mar 2026 19:18:32 +0000 Subject: [PATCH] Eliminar creche_app/windows/runner/utils.h --- creche_app/windows/runner/utils.h | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 creche_app/windows/runner/utils.h diff --git a/creche_app/windows/runner/utils.h b/creche_app/windows/runner/utils.h deleted file mode 100644 index 3879d54..0000000 --- a/creche_app/windows/runner/utils.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef RUNNER_UTILS_H_ -#define RUNNER_UTILS_H_ - -#include -#include - -// 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, -// encoded in UTF-8. Returns an empty std::vector on failure. -std::vector GetCommandLineArguments(); - -#endif // RUNNER_UTILS_H_