skyrope-mit-merge-hell-20040226
[openafs.git] / src / WINNT / afssvrmgr / set_general.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 SET_GENERAL_H
11 #define SET_GENERAL_H
12
13
14 /*
15  * DEFINITIONS ________________________________________________________________
16  *
17  */
18
19 #define ckQUOTA_DEFAULT   5000
20 #define ckQUOTA_MINIMUM      1           // minimum quota: 1kb
21 #define ckQUOTA_MAXIMUM    (2L*ck1TB-1L) // maximum quota: 0x7FFFFFFF kb (~2TB)
22
23 #define LVIS_ALL (LVIS_FOCUSED | LVIS_SELECTED | LVIS_CUT | LVIS_DROPHILITED)
24
25
26 /*
27  * PROTOTYPES _________________________________________________________________
28  *
29  */
30
31 PVOID Filesets_LoadPreferences (LPIDENT lpiFileset);
32 BOOL Filesets_SavePreferences (LPIDENT lpiFileset);
33
34 LPIDENT Filesets_GetSelected (HWND hDlg);
35 LPIDENT Filesets_GetFocused (HWND hDlg, LPPOINT pptHitTest = NULL);
36 HTREEITEM Filesets_GetFocusedItem (HWND hDlg, LPPOINT pptHitTest = NULL);
37
38 BOOL Filesets_fIsLocked (LPFILESETSTATUS pfs);
39
40
41 #endif
42