I saw a specific piece of code
Int SensorxyzOpen(SensorHandle          *handle_ptr,
                      struct SensorCallback *client_callback_ptr,
                      BOOL                     testcalibrated,
                      void                     *contextptr)
{
(void)handle_ptr;
(void)client_callback_ptr;
(void)testcalibrated;
(void)contextptr;
 return ERROR_NOT_SUPPORTED;
} 
What is this function doing ? How the function arguments can be used as statements
 
     
    