user32: Unimplemented SystemParametersInfoW actions display fixme only once.
This commit is contained in:
parent
9d15a99a10
commit
fb6b40cc60
|
@ -1186,7 +1186,14 @@ BOOL WINAPI SystemParametersInfoW( UINT uiAction, UINT uiParam,
|
||||||
{
|
{
|
||||||
#define WINE_SPI_FIXME(x) \
|
#define WINE_SPI_FIXME(x) \
|
||||||
case x: \
|
case x: \
|
||||||
|
{ \
|
||||||
|
static BOOL warn = TRUE; \
|
||||||
|
if (warn) \
|
||||||
|
{ \
|
||||||
|
warn = FALSE; \
|
||||||
FIXME( "Unimplemented action: %u (%s)\n", x, #x ); \
|
FIXME( "Unimplemented action: %u (%s)\n", x, #x ); \
|
||||||
|
} \
|
||||||
|
} \
|
||||||
SetLastError( ERROR_INVALID_SPI_VALUE ); \
|
SetLastError( ERROR_INVALID_SPI_VALUE ); \
|
||||||
ret = FALSE; \
|
ret = FALSE; \
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in New Issue