xserver/os/rpcauth.h
Enrico Weigelt, metux IT consult 664c3b6ba8 os: move rpcauth prototypes to separate header
The rpc 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>
2024-02-22 23:42:52 +00:00

13 lines
324 B
C

#ifndef _XSERVER_OS_RPCAUTH_H
#define _XSERVER_OS_RPCAUTH_H
#include "osdep.h"
void SecureRPCInit(AuthInitArgs);
XID SecureRPCCheck(AuthCheckArgs);
int SecureRPCAdd(AuthAddCArgs);
int SecureRPCFromID(AuthFromIDArgs);
int SecureRPCRemove(AuthRemCArgs);
int SecureRPCReset(AuthRstCArgs);
#endif /* _XSERVER_OS_RPCAUTH_H */