Output.h 281 B

123456789101112131415161718
  1. #pragma once
  2. #include "il2cpp-config.h"
  3. struct Il2CppString;
  4. namespace il2cpp
  5. {
  6. namespace utils
  7. {
  8. class LIBIL2CPP_CODEGEN_API Output
  9. {
  10. public:
  11. static void WriteToStdout(const char* message);
  12. static void WriteToStderr(const char* message);
  13. };
  14. }
  15. }