mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +00:00
33 lines
703 B
C
33 lines
703 B
C
#ifndef _LIBTIRPC_PRECOMP_H_
|
|
#define _LIBTIRPC_PRECOMP_H_
|
|
|
|
#include <wintirpc.h>
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
#include <reentrant.h>
|
|
#include <time.h>
|
|
#include <fcntl.h>
|
|
#include <netconfig.h>
|
|
#include <rpc/xdr.h>
|
|
#include <rpc/auth.h>
|
|
#include <rpc/auth_sspi.h>
|
|
#include <rpc/auth_unix.h>
|
|
#include <rpc/clnt.h>
|
|
#include <rpc/nettype.h>
|
|
#include <rpc/rpc.h>
|
|
#include <rpc/raw.h>
|
|
#include <rpc/rpcb_prot.h>
|
|
#include <rpc/svc.h>
|
|
#include <rpc/types.h>
|
|
#include <sys/types.h>
|
|
#include <rpc/pmap_prot.h>
|
|
#include <rpc/pmap_clnt.h>
|
|
#include <rpc/pmap_rmt.h>
|
|
#include <libc_private.h>
|
|
|
|
#endif /* _LIBTIRPC_PRECOMP_H_ */
|