This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
magicka/utils/filecenter/filecenter.h

29 lines
401 B
C
Raw Normal View History

2018-04-23 11:35:54 +00:00
#ifndef __FILECENTER_H__
#define __FILECENTER_H__
struct file_sub {
char *name;
char *database;
char *upload_path;
int upload_sec_level;
int download_sec_level;
};
struct file_directory {
char *name;
char *path;
int sec_level;
int display_on_web;
int file_sub_count;
struct file_sub **file_subs;
};
2018-05-02 03:37:09 +00:00
struct archiver {
char *name;
char *extension;
char *unpack;
char *pack;
};
2018-04-23 11:35:54 +00:00
#endif