renamed struct types

This commit is contained in:
Ken Van Hoeylandt
2023-12-28 13:07:01 +01:00
parent 6282011634
commit 1cafa1ec1a
38 changed files with 120 additions and 120 deletions
+2 -2
View File
@@ -19,8 +19,8 @@ extern "C" {
* @param code the code to execute: consider putting it between {}
*/
#define FURI_RECORD_TRANSACTION(record_name, variable_name, code) \
{ \
NbGui*(variable_name) = (NbGui*)furi_record_open(record_name); \
{ \
Gui*(variable_name) = (Gui*)furi_record_open(record_name); \
code; \
furi_record_close(record_name); \
}