1//
2// SPDX-License-Identifier: BSD-3-Clause
3// Copyright (c) Contributors to the OpenEXR Project.
4//
5
6#ifndef INCLUDED_IMF_INT64_H
7#define INCLUDED_IMF_INT64_H
8
9//----------------------------------------------------------------------------
10//
11// Deprecated Int64/SInt64 unsigned 64-bit integer type.
12// Use int64_t and uint64_t instead.
13//
14//----------------------------------------------------------------------------
15
16#include "ImathInt64.h"
17#include "ImfNamespace.h"
18#include <stdint.h>
19
20OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_ENTER
21
22IMATH_DEPRECATED("use uint64_t")
23typedef IMATH_NAMESPACE::Int64 Int64;
24
25IMATH_DEPRECATED("use int64_t")
26typedef IMATH_NAMESPACE::SInt64 SInt64;
27
28OPENEXR_IMF_INTERNAL_NAMESPACE_HEADER_EXIT
29
30
31
32
33#endif // INCLUDED_IMF_INT64_H
34

source code of include/OpenEXR/ImfInt64.h