Alex Henrie : crypt32: Don't export CRYPT_CopyReversed.
Module: wine Branch: master Commit: 8102e2ca2b521a8a026381818d2b83fb74738434 URL: https://gitlab.winehq.org/wine/wine/-/commit/8102e2ca2b521a8a026381818d2b83f... Author: Alex Henrie <alexhenrie24(a)gmail.com> Date: Mon Jun 19 21:44:05 2023 -0600 crypt32: Don't export CRYPT_CopyReversed. --- dlls/crypt32/crypt32_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/crypt32/crypt32_private.h b/dlls/crypt32/crypt32_private.h index e29249b1136..d61fcfb7d6e 100644 --- a/dlls/crypt32/crypt32_private.h +++ b/dlls/crypt32/crypt32_private.h @@ -46,7 +46,7 @@ BOOL CNG_ImportPubKey(CERT_PUBLIC_KEY_INFO *pubKeyInfo, BCRYPT_KEY_HANDLE *key) /* Copies `len` bytes from `src` to `dst`, * reversing the order of the bytes */ -void CRYPT_CopyReversed(BYTE *dst, const BYTE *src, size_t len); +void CRYPT_CopyReversed(BYTE *dst, const BYTE *src, size_t len) DECLSPEC_HIDDEN; BOOL CRYPT_EncodeLen(DWORD len, BYTE *pbEncoded, DWORD *pcbEncoded) DECLSPEC_HIDDEN;
participants (1)
-
Alexandre Julliard