aboutsummaryrefslogtreecommitdiffstats
path: root/include/uid.h
blob: a2bcec24d053929d503d6287277122b04ebbdc24 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Copyright (c) 2011 William Pitcock <nenolod@dereferenced.org>.
 * Rights to this code are as documented in doc/LICENSE.
 *
 * UID provider stuff.
 */

#ifndef ATHEME_UID_H
#define ATHEME_UID_H

typedef struct {
	void (*uid_init)(const char *sid);
	const char *(*uid_get)(void);
} uid_provider_t;

extern uid_provider_t *uid_provider_impl;

#endif