Changeset 94082 in vbox for trunk/src/libs/openssl-3.0.1/include/openssl/stack.h
- Timestamp:
- Mar 3, 2022 7:17:34 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150325
- Location:
- trunk/src/libs/openssl-3.0.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.0.1
- Property svn:mergeinfo
-
old new 12 12 /vendor/openssl/1.1.1c:131722-131725 13 13 /vendor/openssl/1.1.1k:145841-145843 14 /vendor/openssl/3.0.1:150323-150324 15 /vendor/openssl/current:147554-150322
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.0.1/include/openssl/stack.h
r91772 r94082 1 1 /* 2 * Copyright 1995-20 17The OpenSSL Project Authors. All Rights Reserved.2 * Copyright 1995-2021 The OpenSSL Project Authors. All Rights Reserved. 3 3 * 4 * Licensed under the OpenSSL license(the "License"). You may not use4 * Licensed under the Apache License 2.0 (the "License"). You may not use 5 5 * this file except in compliance with the License. You can obtain a copy 6 6 * in the file LICENSE in the source distribution or at … … 8 8 */ 9 9 10 #ifndef HEADER_STACK_H 11 # define HEADER_STACK_H 10 #ifndef OPENSSL_STACK_H 11 # define OPENSSL_STACK_H 12 # pragma once 13 14 # include <openssl/macros.h> 15 # ifndef OPENSSL_NO_DEPRECATED_3_0 16 # define HEADER_STACK_H 17 # endif 12 18 13 19 #ifdef __cplusplus … … 40 46 int OPENSSL_sk_find(OPENSSL_STACK *st, const void *data); 41 47 int OPENSSL_sk_find_ex(OPENSSL_STACK *st, const void *data); 48 int OPENSSL_sk_find_all(OPENSSL_STACK *st, const void *data, int *pnum); 42 49 int OPENSSL_sk_push(OPENSSL_STACK *st, const void *data); 43 50 int OPENSSL_sk_unshift(OPENSSL_STACK *st, const void *data); … … 51 58 int OPENSSL_sk_is_sorted(const OPENSSL_STACK *st); 52 59 53 # if OPENSSL_API_COMPAT < 0x10100000L60 # ifndef OPENSSL_NO_DEPRECATED_1_1_0 54 61 # define _STACK OPENSSL_STACK 55 62 # define sk_num OPENSSL_sk_num
Note:
See TracChangeset
for help on using the changeset viewer.