You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
o3de/Code/Legacy/CryCommon/Win64specific.h

96 lines
2.3 KiB
C

/*
* 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 <stdexcept>
#include <malloc.h>
#include <io.h>
#include <new.h>
#include <direct.h>
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <time.h>
//////////////////////////////////////////////////////////////////////////
// Special intrinsics
#include <math.h> // Should be included before intrin.h
#include <intrin.h>
//////////////////////////////////////////////////////////////////////////
// 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