X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=CryptoPkg%2FInclude%2FOpenSslSupport.h;h=e011a7cfee54d0b8136cdf043ddf5eb9e5d4b334;hp=600578e780fd272b03ff2d767db6098e3f7f08e1;hb=2c86774429f2e544fbed36f3cdd253eac56e34ab;hpb=2ed235fc296b17ead0bebd670aa5bc891cf086cc diff --git a/CryptoPkg/Include/OpenSslSupport.h b/CryptoPkg/Include/OpenSslSupport.h index 600578e780..e011a7cfee 100644 --- a/CryptoPkg/Include/OpenSslSupport.h +++ b/CryptoPkg/Include/OpenSslSupport.h @@ -21,6 +21,9 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include #include +#define OPENSSLDIR "" +#define ENGINESDIR "" + #define MAX_STRING_SIZE 0x1000 // @@ -90,6 +93,7 @@ typedef VOID *FILE; #define LOG_DEBUG 7 /* debug-level messages */ #define LOG_PID 0x01 /* log the pid with each message */ #define LOG_CONS 0x02 /* log on the console if errors in sending */ +#define CHAR_BIT 8 /* Number of bits in a char */ // // Macros from EFI Application Toolkit required to build Open SSL @@ -216,6 +220,9 @@ int strncmp (const char *, const char *, size_t); char *strrchr (const char *, int); unsigned long strtoul (const char *, char **, int); long strtol (const char *, char **, int); +char *strerror (int); +size_t strspn (const char *, const char *); +size_t strcspn (const char *, const char *); int printf (const char *, ...); int sscanf (const char *, const char *, ...); int open (const char *, int, ...);