c92230f7884f025fb066a3396f4bc7e8961e5114
[openafs.git] / src / WINNT / afs_setup_utils / sutil.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 AFS_SUTIL_H
11 #define AFS_SUTIL_H
12
13 /* Some install/uninstall related utilities */
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 extern BOOL InNetworkProviderOrder(char *pszNetworkProvider, BOOL *pbIn);
20 extern BOOL AddToProviderOrder(char *pszWhatToAdd);
21 extern BOOL RemoveFromProviderOrder(char *pszWhatToDel);
22 extern BOOL ReadSystemEnv(char **ppszEnvValue, char *pszEnvName);
23 extern BOOL WriteSystemEnv(char *pszEnvValue, char *pszEnvName);
24 extern BOOL AddToSystemPath(char *pszPath);
25 extern BOOL RemoveFromSystemPath(char *pszPath);
26 extern BOOL IsWinNT();
27
28 #ifdef __cplusplus
29 };
30 #endif
31
32 #endif /* AFS_SUTIL_H */