/opt/canhelp/apps/mobile/windows/runner
NameSizeModeActions
resources/-0755rm
CMakeLists.txt17960644editdlrm
flutter_window.cpp21220644editdlrm
flutter_window.h9280644editdlrm
main.cpp12600644editdlrm
resource.h4320644editdlrm
runner.exe.manifest6020644editdlrm
Runner.rc30250644editdlrm
utils.cpp17970644editdlrm
utils.h6720644editdlrm
win32_window.cpp85340644editdlrm
win32_window.h35220644editdlrm
Edit: /opt/canhelp/apps/mobile/windows/runner/utils.h (672B)
#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_