mirror of
https://github.com/curl/curl.git
synced 2026-08-26 17:53:33 +03:00
tidy-up: rename CURL_WINDOWS_APP to CURL_WINDOWS_UWP
Rename internal macro to make its purpose more obvious. After this patch `grep -i uwp` shows all the code related to UWP. Ref: https://curl.se/mail/lib-2024-09/0014.html Closes #14881
This commit is contained in:
parent
445fb81237
commit
bc2f72b9ae
20 changed files with 33 additions and 33 deletions
|
|
@ -2732,7 +2732,7 @@ static void schannel_checksum(const unsigned char *input,
|
|||
DWORD provType,
|
||||
const unsigned int algId)
|
||||
{
|
||||
#ifdef CURL_WINDOWS_APP
|
||||
#ifdef CURL_WINDOWS_UWP
|
||||
(void)input;
|
||||
(void)inputlen;
|
||||
(void)provType;
|
||||
|
|
@ -2952,7 +2952,7 @@ const struct Curl_ssl Curl_ssl_schannel = {
|
|||
#ifdef HAS_MANUAL_VERIFY_API
|
||||
SSLSUPP_CAINFO_BLOB |
|
||||
#endif
|
||||
#ifndef CURL_WINDOWS_APP
|
||||
#ifndef CURL_WINDOWS_UWP
|
||||
SSLSUPP_PINNEDPUBKEY |
|
||||
#endif
|
||||
SSLSUPP_TLS13_CIPHERSUITES |
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
#include "vtls.h"
|
||||
|
||||
#if (defined(__MINGW32__) || defined(CERT_CHAIN_REVOCATION_CHECK_CHAIN)) \
|
||||
&& !defined(CURL_WINDOWS_APP)
|
||||
&& !defined(CURL_WINDOWS_UWP)
|
||||
#define HAS_MANUAL_VERIFY_API
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -346,7 +346,7 @@ static DWORD cert_get_name_string(struct Curl_easy *data,
|
|||
DWORD length)
|
||||
{
|
||||
DWORD actual_length = 0;
|
||||
#if defined(CURL_WINDOWS_APP)
|
||||
#if defined(CURL_WINDOWS_UWP)
|
||||
(void)data;
|
||||
(void)cert_context;
|
||||
(void)host_names;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue