mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 15:10:02 +01:00
The MIT authentication handling isn't really OS specific, and only few sites actually need to call it, so at least it's prototypes are better off in some separate header. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net> Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1311>
13 lines
321 B
C
13 lines
321 B
C
#ifndef _XSERVER_OS_MITAUTH_H
|
|
#define _XSERVER_OS_MITAUTH_H
|
|
|
|
#include "osdep.h"
|
|
|
|
XID MitCheckCookie(AuthCheckArgs);
|
|
XID MitGenerateCookie(AuthGenCArgs);
|
|
int MitAddCookie(AuthAddCArgs);
|
|
int MitFromID(AuthFromIDArgs);
|
|
int MitRemoveCookie(AuthRemCArgs);
|
|
int MitResetCookie(AuthRstCArgs);
|
|
|
|
#endif /* _XSERVER_OS_MITAUTH_H */
|