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
2017-10-18 20:50:33 +10:00

32 lines
423 B
C

#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;
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