19 lines
426 B
C
19 lines
426 B
C
|
// Copyright (c) Acconeer AB, 2020-2021
|
||
|
// All rights reserved
|
||
|
|
||
|
|
||
|
#ifndef EXAMPLE_MULTIPLE_SERVICE_USAGE_H_
|
||
|
#define EXAMPLE_MULTIPLE_SERVICE_USAGE_H_
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
/**
|
||
|
* @brief Example for how to use multiple services using the override sensor ID check configuration
|
||
|
*
|
||
|
* @return Returns EXIT_SUCCESS if successful, otherwise EXIT_FAILURE
|
||
|
*/
|
||
|
int acc_example_multiple_service_usage(int argc, char *argv[]);
|
||
|
|
||
|
|
||
|
#endif
|