blob: 0f1cfa5fc736e30ff799028df6e7e95bead96adb [file]
/*
* Copyright 2010-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the LICENSE file.
*/
#pragma once
namespace kotlin {
namespace internal {
inline constexpr uintptr_t FILE_NOT_INITIALIZED = 0;
inline constexpr uintptr_t FILE_BEING_INITIALIZED = 1;
inline constexpr uintptr_t FILE_INITIALIZED = 2;
inline constexpr uintptr_t FILE_FAILED_TO_INITIALIZE = 3;
} // namespace internal
} // namespace kotlin