3
0

AWSNativeSDKInit_Default.cpp 554 B

1234567891011121314151617181920212223242526
  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 <AWSNativeSDKInit/AWSNativeSDKInit.h>
  9. namespace AWSNativeSDKInit
  10. {
  11. namespace Platform
  12. {
  13. #if defined(PLATFORM_SUPPORTS_AWS_NATIVE_SDK)
  14. void CustomizeSDKOptions(Aws::SDKOptions& options)
  15. {
  16. AZ_UNUSED(options);
  17. }
  18. void CustomizeShutdown()
  19. {
  20. }
  21. #endif
  22. }
  23. }