mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 05:50:04 +01:00
14 lines
351 B
C
14 lines
351 B
C
|
|
#ifndef _XSERVER_OS_XDMAUTH_H
|
||
|
|
#define _XSERVER_OS_XDMAUTH_H
|
||
|
|
|
||
|
|
#include "osdep.h"
|
||
|
|
|
||
|
|
XID XdmCheckCookie(AuthCheckArgs);
|
||
|
|
int XdmAddCookie(AuthAddCArgs);
|
||
|
|
int XdmFromID(AuthFromIDArgs);
|
||
|
|
int XdmRemoveCookie(AuthRemCArgs);
|
||
|
|
int XdmResetCookie(AuthRstCArgs);
|
||
|
|
void XdmAuthenticationInit(const char *cookie, int cookie_length);
|
||
|
|
|
||
|
|
#endif /* _XSERVER_OS_XDMAUTH_H */
|