/* * Copyright (c) Contributors to the Open 3D Engine Project. * For complete copyright and license terms please see the LICENSE at the root of this distribution. * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ // Description : Specific to Win32 declarations, inline functions etc. #ifndef CRYINCLUDE_CRYCOMMON_WIN64SPECIFIC_H #define CRYINCLUDE_CRYCOMMON_WIN64SPECIFIC_H #pragma once #define _CPU_AMD64 #define _CPU_SSE #define ILINE __forceinline #define DEPRECATED __declspec(deprecated) #ifndef _WIN32_WINNT # define _WIN32_WINNT 0x501 #endif ////////////////////////////////////////////////////////////////////////// // Standard includes. ////////////////////////////////////////////////////////////////////////// #include #include #include #include #include #include #include #include #include ////////////////////////////////////////////////////////////////////////// // Special intrinsics #include // Should be included before intrin.h #include ////////////////////////////////////////////////////////////////////////// // Define platform independent types. ////////////////////////////////////////////////////////////////////////// #include "BaseTypes.h" typedef long LONG; typedef unsigned char BYTE; typedef unsigned long threadID; typedef unsigned long DWORD; typedef double real; //biggest float-type on this machine typedef long LONG; typedef void* THREAD_HANDLE; typedef void* EVENT_HANDLE; typedef __int64 INT_PTR, * PINT_PTR; typedef unsigned __int64 UINT_PTR, * PUINT_PTR; typedef __int64 LONG_PTR, * PLONG_PTR; typedef unsigned __int64 ULONG_PTR, * PULONG_PTR; typedef ULONG_PTR DWORD_PTR, * PDWORD_PTR; int64 CryGetTicks(); int64 CryGetTicksPerSec(); #ifndef SAFE_DELETE #define SAFE_DELETE(p) { if (p) { delete (p); (p) = NULL; } \ } #endif #ifndef SAFE_DELETE_ARRAY #define SAFE_DELETE_ARRAY(p) { if (p) { delete [] (p); (p) = NULL; } \ } #endif #ifndef SAFE_RELEASE #define SAFE_RELEASE(p) { if (p) { (p)->Release(); (p) = NULL; } \ } #endif #ifndef FILE_ATTRIBUTE_NORMAL #define FILE_ATTRIBUTE_NORMAL 0x00000080 #endif #define TARGET_DEFAULT_ALIGN (0x8U) #define PLATFORM_64BIT #endif // CRYINCLUDE_CRYCOMMON_WIN64SPECIFIC_H