mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-12 12:42:30 +04:00
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();
|