Buckets:
| /* | |
| * Copyright 1995-2024 The OpenSSL Project Authors. All Rights Reserved. | |
| * | |
| * Licensed under the Apache License 2.0 (the "License"). You may not use | |
| * this file except in compliance with the License. You can obtain a copy | |
| * in the file LICENSE in the source distribution or at | |
| * https://www.openssl.org/source/license.html | |
| */ | |
| extern "C" { | |
| /****************************************************************************** | |
| * Detect operating systems. This probably needs completing. | |
| * The result is that at least one OPENSSL_SYS_os macro should be defined. | |
| * However, if none is defined, Unix is assumed. | |
| **/ | |
| /* --------------------- Microsoft operating systems ---------------------- */ | |
| /* | |
| * Note that MSDOS actually denotes 32-bit environments running on top of | |
| * MS-DOS, such as DJGPP one. | |
| */ | |
| /* | |
| * For 32 bit environment, there seems to be the CygWin environment and then | |
| * all the others that try to do the same thing Microsoft does... | |
| */ | |
| /* | |
| * UEFI lives here because it might be built with a Microsoft toolchain and | |
| * we need to avoid the false positive match on Windows. | |
| */ | |
| /* Anything that tries to look like Microsoft is "Windows" */ | |
| /* | |
| * DLL settings. This part is a bit tough, because it's up to the | |
| * application implementer how he or she will link the application, so it | |
| * requires some macro to be used. | |
| */ | |
| /* ------------------------------- OpenVMS -------------------------------- */ | |
| /* -------------------------------- Unix ---------------------------------- */ | |
| /* -------------------------------- VOS ----------------------------------- */ | |
| /* ---------------------------- HP NonStop -------------------------------- */ | |
| /** | |
| * That's it for OS-specific stuff | |
| *****************************************************************************/ | |
| /*- | |
| * OPENSSL_EXTERN is normally used to declare a symbol with possible extra | |
| * attributes to handle its presence in a shared library. | |
| * OPENSSL_EXPORT is used to define a symbol with extra possible attributes | |
| * to make it visible in a shared library. | |
| * Care needs to be taken when a header file is used both to declare and | |
| * define symbols. Basically, for any library that exports some global | |
| * variables, the following code must be present in the header file that | |
| * declares them, before OPENSSL_EXTERN is used: | |
| * | |
| * #ifdef SOME_BUILD_FLAG_MACRO | |
| * # undef OPENSSL_EXTERN | |
| * # define OPENSSL_EXTERN OPENSSL_EXPORT | |
| * #endif | |
| * | |
| * The default is to have OPENSSL_EXPORT and OPENSSL_EXTERN | |
| * have some generally sensible values. | |
| */ | |
| /* Standard integer types */ | |
| typedef INT8 int8_t; | |
| typedef UINT8 uint8_t; | |
| typedef INT16 int16_t; | |
| typedef UINT16 uint16_t; | |
| typedef INT32 int32_t; | |
| typedef UINT32 uint32_t; | |
| typedef INT64 int64_t; | |
| typedef UINT64 uint64_t; | |
| typedef UINTN uintptr_t; | |
| /* Because the specs say that inttypes.h includes stdint.h if present */ | |
| /* | |
| * minimally required typdefs for systems not supporting inttypes.h or | |
| * stdint.h: currently just older VC++ | |
| */ | |
| typedef signed char int8_t; | |
| typedef unsigned char uint8_t; | |
| typedef short int16_t; | |
| typedef unsigned short uint16_t; | |
| typedef int int32_t; | |
| typedef unsigned int uint32_t; | |
| typedef __int64 int64_t; | |
| typedef unsigned __int64 uint64_t; | |
| typedef intmax_t ossl_intmax_t; | |
| typedef uintmax_t ossl_uintmax_t; | |
| /* Fall back to the largest we know we require and can handle */ | |
| typedef int64_t ossl_intmax_t; | |
| typedef uint64_t ossl_uintmax_t; | |
| /* ossl_inline: portable inline definition usable in public headers */ | |
| /* just use inline */ | |
| /* | |
| * Visual Studio: inline is available in C++ only, however | |
| * __inline is available for C, see | |
| * http://msdn.microsoft.com/en-us/library/z8y1yy88.aspx | |
| */ | |
| /* ossl_unused: portable unused attribute for use in public headers */ | |
| } | |
Xet Storage Details
- Size:
- 8.45 kB
- Xet hash:
- afc6f8b53173bda300bfa027fdc12a18ddfb628c8a2514ea128a470e34d1e4e4
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.