24 lines
No EOL
357 B
C
24 lines
No EOL
357 B
C
// Define once
|
|
#ifndef H_MANAGER
|
|
#define H_MANAGER
|
|
|
|
// Libraries
|
|
#include <furi.h>
|
|
|
|
#include "app.h"
|
|
#include "pass.h"
|
|
#include "store.h"
|
|
|
|
// Structures
|
|
typedef struct {
|
|
char* names[4];
|
|
} Manager;
|
|
|
|
// Constructors
|
|
Manager* manager_create();
|
|
|
|
// Functions
|
|
void manager_loadnames(Manager* manager, int page);
|
|
void manager_delete(Manager* manager);
|
|
|
|
#endif |