10 lines
233 B
C
10 lines
233 B
C
|
#pragma once
|
||
|
|
||
|
#include "../types.h"
|
||
|
|
||
|
const SubGhzProtocol* subghz_protocol_registry_get_by_name(const char* name);
|
||
|
|
||
|
const SubGhzProtocol* subghz_protocol_registry_get_by_index(size_t index);
|
||
|
|
||
|
size_t subghz_protocol_registry_count();
|