It simply suppresses the compiler warning that two parameters are not used in the function.
The macro itself is probably just defined as
#define UNREFERENCED_PARAMETER(x) (x)
therefore, he refers to his argument, but does nothing with it.
source
share