15 lines
No EOL
306 B
C++
15 lines
No EOL
306 B
C++
#ifndef __cplusplus
|
|
#include <stdbool.h>
|
|
#endif
|
|
|
|
#ifndef __cplusplus
|
|
#include <stdint.h>
|
|
#else
|
|
#include <cstdint>
|
|
#endif
|
|
|
|
#define NUM_SUPPORTED_PRODUCTS 2
|
|
|
|
extern const uint16_t xreal_vendor_id;
|
|
extern const uint16_t xreal_product_ids[NUM_SUPPORTED_PRODUCTS];
|
|
bool is_xreal_product_id(uint16_t product_id); |