death to trailing whitespace
[openafs.git] / src / WINNT / afsusrmgr / browse.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 BROWSE_H
11 #define BROWSE_H
12
13
14 /*
15  * DEFINITIONS ________________________________________________________________
16  *
17  */
18
19 typedef struct
20    {
21    HWND hParent;
22    int iddForHelp;
23    int idsTitle;
24    int idsPrompt;
25    int idsCheck;
26    ASOBJTYPE TypeToShow;
27    LPASIDLIST pObjectsToSkip;
28    LPASIDLIST pObjectsSelected;
29    BOOL fAllowMultiple;
30    TCHAR szName[ cchNAME ];
31    BOOL fQuerying; // used internally
32    } BROWSE_PARAMS, *LPBROWSE_PARAMS;
33
34
35 /*
36  * PROTOTYPES _________________________________________________________________
37  *
38  */
39
40 BOOL ShowBrowseDialog (LPBROWSE_PARAMS lpp);
41
42
43 #endif
44