⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.23
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
local
/
src
/
sqlsrv-5.10.0beta1
/
shared
/
View File Name :
xplat_intsafe.h
//--------------------------------------------------------------------------------------------------------------------------------- // File: xplat_intsafe.h // // Contents: This module defines helper functions to prevent // integer overflow bugs. // // Microsoft Drivers 5.10 for PHP for SQL Server // Copyright(c) Microsoft Corporation // All rights reserved. // MIT License // Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files(the ""Software""), // to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, // and / or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions : // The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. //--------------------------------------------------------------------------------------------------------------------------------- #ifndef XPLAT_INTSAFE_H #define XPLAT_INTSAFE_H #if (_MSC_VER > 1000) #pragma once #endif #if !defined(_W64) #if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && (_MSC_VER >= 1300) #define _W64 __w64 #else #define _W64 #endif #endif #include "sal_def.h" #include <limits.h> // // typedefs // typedef char CHAR; typedef unsigned char BYTE; typedef unsigned short USHORT; typedef unsigned short WORD; typedef int INT; typedef unsigned int UINT; typedef windowsLong_t LONG; typedef windowsULong_t DWORD; typedef windowsLongLong_t LONGLONG; typedef windowsULongLong_t ULONGLONG; typedef _W64 windowsLong_t LONG_PTR, *PLONG_PTR; typedef _W64 windowsULong_t ULONG_PTR, *PULONG_PTR; typedef LONG_PTR SSIZE_T; typedef ULONG_PTR SIZE_T; #define DWORD_MAX 0xffffffffUL #endif // XPLAT_INTSAFE_H