summaryrefslogtreecommitdiffstats
path: root/src/overlay.h
blob: d6b96fd4e50385c696aabbf2e0ba135bf2557e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef OVERLAY_H
#define OVERLAY_H

//TODO:document me !

typedef struct Overlay Overlay;

Overlay*	createOverlay(const char*, const char*, int, int);
const char*	overlayName(Overlay*);
const char*	overlayOwnerEmail(Overlay*);
const char*	overlayDescription(Overlay*);
const char*	overlayShortList(Overlay*);
const char*	overlayStr(Overlay*);
const char*	overlayToXml(Overlay*);
int 		overlayPriority(Overlay*);
int 		overlayIsOfficial(Overlay*);
int		overlayIsSupported(Overlay*);
void		overlayFree(Overlay*);

#endif