death to trailing whitespace
[openafs.git] / src / WINNT / afssvrmgr / svr_salvage.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 SVR_SALVAGE_H
11 #define SVR_SALVAGE_H
12
13
14 /*
15  * DEFINITIONS ________________________________________________________________
16  *
17  */
18
19 typedef struct
20    {
21    LPIDENT lpiSalvage;
22    TCHAR szTempDir[ MAX_PATH ];
23    TCHAR szLogFile[ MAX_PATH ];
24    int nProcesses;
25    BOOL fForce;
26    BOOL fReadonly;
27    BOOL fLogInodes;
28    BOOL fLogRootInodes;
29    BOOL fRebuildDirs;
30    BOOL fReadBlocks;
31    } SVR_SALVAGE_PARAMS, *LPSVR_SALVAGE_PARAMS;
32
33
34 /*
35  * PROTOTYPES _________________________________________________________________
36  *
37  */
38
39 void Server_Salvage (LPIDENT lpi);
40
41
42 #endif
43