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/ticproc/ticproc.h

32 lines
423 B
C
Raw Permalink Normal View History

2016-08-10 11:07:59 +00:00
#ifndef __TICPROC_H__
#define __TICPROC_H__
struct filearea_t {
char *name;
char *password;
char *path;
char *database;
};
struct ticproc_t {
int ignore_pass;
int case_insensitve;
char *inbound;
char *bad;
2016-08-10 11:07:59 +00:00
int filearea_count;
struct filearea_t **file_areas;
};
struct ticfile_t {
char *area;
char *password;
char *file;
char *lname;
int desc_lines;
char **desc;
char *replaces;
char *crc;
};
#endif