Launcher_UnixLike.h 618 B

1234567891011121314151617181920212223
  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. #pragma once
  9. #include <cstddef>
  10. namespace O3DELauncher
  11. {
  12. // Increase the core and stack limits
  13. bool IncreaseResourceLimits();
  14. // Get the absolute path for any given input path if possible. If an absolute path cannot be
  15. // resolved, then return an empty string.
  16. const char* GetAbsolutePath(char* absolutePathBuffer, size_t absolutePathBufferSize, const char* inputPath);
  17. }