Fix subghz remote api symbols (#175)

This commit is contained in:
Willy-JL
2023-03-20 17:24:37 +00:00
parent 54d66a9402
commit 6fd4949bcf
2 changed files with 9 additions and 1 deletions

View File

@@ -1,6 +1,10 @@
#pragma once
#include "base.h"
#ifdef __cplusplus
extern "C" {
#endif
#define SUBGHZ_PROTOCOL_SECPLUS_V2_NAME "Security+ 2.0"
typedef struct SubGhzProtocolDecoderSecPlus_v2 SubGhzProtocolDecoderSecPlus_v2;
@@ -133,3 +137,7 @@ SubGhzProtocolStatus
* @param output Resulting text
*/
void subghz_protocol_decoder_secplus_v2_get_string(void* context, FuriString* output);
#ifdef __cplusplus
}
#endif