It's often just casted by callers anyway. Fixes clang warning: ``` dlls/windowscodecs/info.c:1426:81: warning: passing 'WICPixelFormatNumericRepresentation *' (aka 'enum WICPixelFormatNumericRepresentation *') to parameter of type 'UINT *' (aka 'unsigned int *') converts between pointers to integer types with different sign [-Wpointer-sign] return ComponentInfo_GetUINTValue(This->classkey, L"NumericRepresentation", pNumericRepresentation); ^~~~~~~~~~~~~~~~~~~~~~ ../dlls/windowscodecs/info.c:104:11: note: passing argument to parameter 'result' here UINT *result) ^ ```