Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Output.h 281B

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. }