Utils_Android.cpp 766 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #include <Utils/Utils.h>
  9. #include <AzCore/PlatformIncl.h>
  10. namespace AtomSampleViewer
  11. {
  12. namespace Utils
  13. {
  14. bool SupportsResizeClientArea()
  15. {
  16. return false;
  17. }
  18. AZStd::string GetDefaultDiffToolPath_Impl()
  19. {
  20. return AZStd::string("");
  21. }
  22. bool RunDiffTool_Impl(const AZStd::string& diffToolPath, const AZStd::string& filePathA, const AZStd::string& filePathB)
  23. {
  24. return false;
  25. }
  26. } // namespace Utils
  27. } // namespace AtomSampleViewer