mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 08:10:03 +01:00
14 lines
324 B
C
14 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 */
|