One Hat Cyber Team
Your IP :
216.73.216.36
Server IP :
162.240.179.46
Server :
Linux vps-14493116.nutrivittasaude.com.br 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64
Server Software :
Apache
PHP Version :
8.2.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
include
/
Imath
/
View File Name :
ImathInt64.h
// // SPDX-License-Identifier: BSD-3-Clause // Copyright Contributors to the OpenEXR Project. // // // 64-bit integer types // // Deprecated, use int64_t/uint64_t instead. // #ifndef INCLUDED_IMATH_INT64_H #define INCLUDED_IMATH_INT64_H #include "ImathNamespace.h" #include <limits.h> IMATH_INTERNAL_NAMESPACE_HEADER_ENTER #if (defined _WIN32 || defined _WIN64) && _MSC_VER >= 1300 /// Int64 - unsigned 64-bit integer IMATH_DEPRECATED("use uint64_t") typedef unsigned __int64 Int64; /// SInt64 - signed 64-bit integer IMATH_DEPRECATED("use sint64_t") typedef __int64 SInt64; #elif ULONG_MAX == 18446744073709551615LU /// Int64 - unsigned 64-bit integer IMATH_DEPRECATED("use uint64_t") typedef long unsigned int Int64; /// SInt64 - signed 64-bit integer IMATH_DEPRECATED("use sint64_t") typedef long int SInt64; #else /// Int64 - unsigned 64-bit integer IMATH_DEPRECATED("use uint64_t") typedef long long unsigned int Int64; /// SInt64 - signed 64-bit integer IMATH_DEPRECATED("use sint64_t") typedef long long int SInt64; #endif IMATH_INTERNAL_NAMESPACE_HEADER_EXIT #endif // INCLUDED_IMATH_INT64_H