This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
FlippyPass/project/backend/manager.h

25 lines
371 B
C
Raw Normal View History

// 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];
2024-09-01 13:58:20 -05:00
int page;
} Manager;
// Constructors
Manager* manager_create();
// Functions
void manager_loadnames(Manager* manager, int page);
void manager_delete(Manager* manager);
#endif