mirror of
https://git.openafs.org/openafs.git
synced 2025-02-01 14:07:39 +00:00
29 lines
513 B
C
29 lines
513 B
C
|
#ifndef SET_PROP_H
|
||
|
#define SET_PROP_H
|
||
|
|
||
|
|
||
|
/*
|
||
|
* DEFINITIONS ________________________________________________________________
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
LPIDENT lpi;
|
||
|
BOOL fIDC_SET_WARN;
|
||
|
BOOL fIDC_SET_WARN_SETFULL_DEF;
|
||
|
WORD wIDC_SET_WARN_SETFULL_PERCENT;
|
||
|
} SET_PROP_APPLY_PARAMS, *LPSET_PROP_APPLY_PARAMS;
|
||
|
|
||
|
|
||
|
/*
|
||
|
* PROTOTYPES _________________________________________________________________
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
void Filesets_ShowProperties (LPIDENT lpiFileset, size_t nAlerts, BOOL fThreshold = FALSE);
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|