summaryrefslogtreecommitdiffstats
path: root/src/overlay.h
blob: 9125de07cc986bf05e5d0f64e0c13217b0ede0e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef OVERLAY_H
#define OVERLAY_H

typedef struct Overlay Overlay;

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

#endif