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.

46 lines
894 B

  1. #pragma once
  2. #include "ListCallback.h"
  3. #include "ProgressCallback.h"
  4. #include "PreWindowsApi.h"
  5. #include "AllowWindowsPlatformTypes.h"
  6. #include "AllowWindowsPlatformAtomics.h"
  7. #pragma warning(push)
  8. #pragma warning(disable: 4191)
  9. #pragma warning(disable: 4996)
  10. #ifndef DeleteFile
  11. #define DeleteFile DeleteFileW
  12. #endif
  13. #ifndef MoveFile
  14. #define MoveFile MoveFileW
  15. #endif
  16. #ifndef LoadString
  17. #define LoadString LoadStringW
  18. #endif
  19. #ifndef GetMessage
  20. #define GetMessage GetMessageW
  21. #endif
  22. #include <atlbase.h>
  23. #include <sphelper.h>
  24. #undef DeleteFile
  25. #undef MoveFile
  26. #include "SevenZipCompressor.h"
  27. #include "SevenZipExtractor.h"
  28. #include "SevenZipLister.h"
  29. #include "HideWindowsPlatformAtomics.h"
  30. #include "HideWindowsPlatformTypes.h"
  31. #include "PostWindowsApi.h"
  32. #pragma warning(pop)
  33. // Version of this library
  34. #define SEVENZIP_VERSION L"0.2.0-20160117.1"
  35. #define SEVENZIP_BRANCH L"master"