Update NEWS for 1.6.22
[pkg-k5-afs_openafs.git] / src / WINNT / afsreg / afssw.h
blobe3085424e828edeb39e24656938020ca3c7adf46
1 /*
2 * Copyright 2000, International Business Machines Corporation and others.
3 * All Rights Reserved.
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 */
10 #ifndef AFSSW_H_
11 #define AFSSW_H_
13 /* Functions for accessing AFS software configuration information. */
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
19 extern int
20 afssw_GetServerInstallDir(char **bufPP);
22 extern int
23 afssw_GetClientCellServDBDir(char **bufPP);
25 extern int
26 afssw_GetClientCellName(char **bufPP);
28 extern int
29 afssw_SetClientCellName(const char *cellName);
31 extern int
32 afssw_GetServerVersion(unsigned *major,
33 unsigned *minor,
34 unsigned *patch);
36 extern int
37 afssw_GetClientVersion(unsigned *major,
38 unsigned *minor,
39 unsigned *patch);
41 #ifdef __cplusplus
43 #endif
45 #endif /* AFSSW_H_ */