rx: Remove RX_CALL_BUSY
[openafs.git] / src / WINNT / afsclass / c_identlist.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 AFSCLASS_IDENTLIST_H
11 #define AFSCLASS_IDENTLIST_H
12
13 #include <WINNT/afsclass.h>
14
15
16 /*
17  * IDENTIFIER-LIST CLASS ______________________________________________________
18  *
19  */
20
21 class IDENTLIST
22    {
23    public:
24       IDENTLIST (void);
25       ~IDENTLIST (void);
26
27       void Add (LPIDENT lpi);
28       void Remove (LPIDENT lpi);
29       void RemoveAll (void);
30       void CopyFrom (LPIDENTLIST pil);
31
32       size_t GetCount (void);
33       BOOL fIsInList (LPIDENT lpi);
34
35       LPIDENT FindFirst (HENUM *phEnum);
36       LPIDENT FindNext (HENUM *phEnum);
37       void FindClose (HENUM *phEnum);
38
39    private:
40       LPHASHLIST m_lIdents;
41    };
42
43
44 #endif  // AFSCLASS_IDENTLIST_H
45