A modded EditSaber for making beat saber maps.
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.

29 lines
565 B

  1. #pragma once
  2. #include <exception>
  3. #include "SevenString.h"
  4. #include "AllowWindowsPlatformTypes.h"
  5. namespace SevenZip
  6. {
  7. TString StrFmt(const TCHAR* format, ...);
  8. TString GetWinErrMsg(const TString& contextMessage, DWORD lastError);
  9. TString GetCOMErrMsg(const TString& contextMessage, HRESULT lastError);
  10. class SevenZipException
  11. {
  12. protected:
  13. TString m_message;
  14. public:
  15. SevenZipException();
  16. SevenZipException(const TString& message);
  17. virtual ~SevenZipException();
  18. const TString& GetMessage() const;
  19. };
  20. }
  21. #include "HideWindowsPlatformTypes.h"