[ADVAPI32_APITEST][NTDLL_APITEST][WINDOWSCODECS] Comment out some unused functions and types. Silences some clang-cl warnings.

This commit is contained in:
Amine Khaldi 2017-12-08 00:22:05 +01:00
parent ccd5377851
commit 9b349f958c
4 changed files with 8 additions and 1 deletions

View file

@ -63,10 +63,13 @@ static inline BitmapImpl *impl_from_IMILUnknown1(IMILUnknown1 *iface)
return CONTAINING_RECORD(iface, BitmapImpl, IMILUnknown1_iface); return CONTAINING_RECORD(iface, BitmapImpl, IMILUnknown1_iface);
} }
#ifndef __REACTOS__
/* This is currently unused */
static inline BitmapImpl *impl_from_IMILUnknown2(IMILUnknown2 *iface) static inline BitmapImpl *impl_from_IMILUnknown2(IMILUnknown2 *iface)
{ {
return CONTAINING_RECORD(iface, BitmapImpl, IMILUnknown2_iface); return CONTAINING_RECORD(iface, BitmapImpl, IMILUnknown2_iface);
} }
#endif
static inline BitmapLockImpl *impl_from_IWICBitmapLock(IWICBitmapLock *iface) static inline BitmapLockImpl *impl_from_IWICBitmapLock(IWICBitmapLock *iface)
{ {

View file

@ -71,11 +71,13 @@ typedef struct FormatConverter {
} FormatConverter; } FormatConverter;
/* https://www.w3.org/Graphics/Color/srgb */ /* https://www.w3.org/Graphics/Color/srgb */
#ifndef __REACTOS__
static inline float from_sRGB_component(float f) static inline float from_sRGB_component(float f)
{ {
if (f <= 0.04045f) return f / 12.92f; if (f <= 0.04045f) return f / 12.92f;
return powf((f + 0.055f) / 1.055f, 2.4f); return powf((f + 0.055f) / 1.055f, 2.4f);
} }
#endif
static inline float to_sRGB_component(float f) static inline float to_sRGB_component(float f)
{ {

View file

@ -32,6 +32,7 @@ static void send_msg(const char *type, const char *msg)
WriteFile(pipe_handle, buf, strlen(buf)+1, &written, NULL); WriteFile(pipe_handle, buf, strlen(buf)+1, &written, NULL);
} }
#if 0
static inline void service_trace(const char *msg, ...) static inline void service_trace(const char *msg, ...)
{ {
va_list valist; va_list valist;
@ -43,6 +44,7 @@ static inline void service_trace(const char *msg, ...)
send_msg("TRACE", buf); send_msg("TRACE", buf);
} }
#endif
static void service_ok(int cnd, const char *msg, ...) static void service_ok(int cnd, const char *msg, ...)
{ {

View file

@ -397,7 +397,7 @@ START_TEST(NtLoadUnloadKey)
{ {
PCWSTR HiveName; PCWSTR HiveName;
PCWSTR RegMountPoint; PCWSTR RegMountPoint;
} HIVE_LIST_ENTRY, *PHIVE_LIST_ENTRY; } HIVE_LIST_ENTRY;
static const HIVE_LIST_ENTRY RegistryHives[] = static const HIVE_LIST_ENTRY RegistryHives[] =
{ {