[ADVAPI32_APITEST][NTDLL_APITEST][WINDOWSCODECS] Comment out some unused functions...
[reactos.git] / dll / win32 / windowscodecs / converter.c
index 2309875..3fca5b3 100644 (file)
@@ -71,11 +71,13 @@ typedef struct FormatConverter {
 } FormatConverter;
 
 /* https://www.w3.org/Graphics/Color/srgb */
 } FormatConverter;
 
 /* https://www.w3.org/Graphics/Color/srgb */
+#ifndef __REACTOS__
 static inline float from_sRGB_component(float f)
 {
     if (f <= 0.04045f) return f / 12.92f;
     return powf((f + 0.055f) / 1.055f, 2.4f);
 }
 static inline float from_sRGB_component(float f)
 {
     if (f <= 0.04045f) return f / 12.92f;
     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)
 {