Welcome to mirror list, hosted at ThFree Co, Russian Federation.

furi.h « api-basic « core - github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0729eca0ca39e4e191719d8d35d7851667646bb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#pragma once

#include "flipper.h"

/*
== Flipper universal registry implementation (FURI) ==

## Requirements

* start daemon app
* kill app
* start child thread (kill when parent app was killed)
* switch between UI apps
*/

/*
Create record.
creates new record in registry and store pointer into it
*/
bool furi_create(const char* name, void* ptr);

/*
Open record.
get stored pointer by its name
*/
void* furi_open(const char* name);