down-before-busy-20040723
[openafs.git] / src / WINNT / afsd / cm_rpc95.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
5  * This software has been released under the terms of the IBM Public
6  * License.  For details, see the LICENSE file in the top-level source
7  * directory or online at http://www.openafs.org/dl/license10.html
8  */
9
10 #ifndef __CM_RPC_H__
11 #define __CM_RPC_H__
12
13 /* Copied from declaration of GUID in RPCDCE.H */
14 typedef struct afs_uuid {
15      unsigned long Data1;
16      unsigned short Data2;
17      unsigned short Data3;
18      unsigned char Data4[8];
19 } afs_uuid_t;
20
21 long AFSRPC_SetToken(
22      afs_uuid_t     uuid,
23      unsigned char  sessionKey[8]
24 );
25
26 long AFSRPC_GetToken(
27      afs_uuid_t     uuid,
28      unsigned char  sessionKey[8]
29 );
30
31 #endif /* __CM_RPC_H__ */