BsWin32Prerequisites.h 635 B

12345678910111213141516171819
  1. //__________________________ Banshee Project - A modern game development toolkit _________________________________//
  2. //_____________________________________ www.banshee-project.com __________________________________________________//
  3. //________________________ Copyright (c) 2014 Marko Pintera. All rights reserved. ________________________________//
  4. #pragma once
  5. #include <windows.h>
  6. #include <BsGLPrerequisites.h>
  7. namespace BansheeEngine
  8. {
  9. class Win32GLSupport;
  10. class Win32Window;
  11. class Win32Context;
  12. /**
  13. * @brief Retrieves last Windows API error and returns a description of it.
  14. */
  15. String translateWGLError();
  16. }