LastError.cpp 282 B

1234567891011121314151617181920
  1. #include "il2cpp-config.h"
  2. #if IL2CPP_TARGET_WINDOWS
  3. #include "os/LastError.h"
  4. #include "WindowsHeaders.h"
  5. namespace il2cpp
  6. {
  7. namespace os
  8. {
  9. uint32_t LastError::GetLastError()
  10. {
  11. return ::GetLastError();
  12. }
  13. } /* namespace os */
  14. } /* namespace il2cpp*/
  15. #endif