2000-11-04 02:13:13 +00:00
|
|
|
/*
|
2000-11-04 10:01:08 +00:00
|
|
|
* Copyright 2000, International Business Machines Corporation and others.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* This software has been released under the terms of the IBM Public
|
|
|
|
* License. For details, see the LICENSE file in the top-level source
|
|
|
|
* directory or online at http://www.openafs.org/dl/license10.html
|
|
|
|
*/
|
2000-11-04 02:13:13 +00:00
|
|
|
|
|
|
|
/* RX: Globals for internal use, basically */
|
|
|
|
|
2001-07-12 20:58:15 +00:00
|
|
|
#include <afsconfig.h>
|
2001-07-05 16:20:00 +00:00
|
|
|
#ifdef KERNEL
|
2002-10-16 04:58:13 +00:00
|
|
|
#include "afs/param.h"
|
2001-07-05 16:20:00 +00:00
|
|
|
#else
|
|
|
|
#include <afs/param.h>
|
|
|
|
#endif
|
|
|
|
|
2003-07-16 00:28:24 +00:00
|
|
|
RCSID
|
|
|
|
("$Header$");
|
2001-07-05 16:20:00 +00:00
|
|
|
|
2000-11-04 02:13:13 +00:00
|
|
|
/* Enable data initialization when the header file is included */
|
|
|
|
#define INIT(stuff) = stuff
|
|
|
|
#if defined(AFS_NT40_ENV) && defined(AFS_PTHREAD_ENV)
|
|
|
|
#define EXT __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define EXT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef KERNEL
|
|
|
|
#ifndef UKERNEL
|
2002-10-16 04:58:13 +00:00
|
|
|
#include "h/types.h"
|
2000-11-04 02:13:13 +00:00
|
|
|
#else /* !UKERNEL */
|
2002-10-16 04:58:13 +00:00
|
|
|
#include "afs/sysincludes.h"
|
2001-07-05 16:20:00 +00:00
|
|
|
#endif /* UKERNEL */
|
2000-11-04 02:13:13 +00:00
|
|
|
#endif /* KERNEL */
|
|
|
|
|
|
|
|
#include "rx_globals.h"
|