31 lines
417 B
C
Executable File
31 lines
417 B
C
Executable File
/*
|
|
* Copyright (c) 1992 - 1994 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
#ifndef _XFN_MISC_CODES_H
|
|
#define _XFN_MISC_CODES_H
|
|
|
|
#pragma ident "@(#)misc_codes.h 1.3 94/11/20 SMI"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum {
|
|
FN_OP_SUPERCEDE = 0,
|
|
FN_OP_EXCLUSIVE = 1
|
|
};
|
|
|
|
|
|
/* description levels */
|
|
enum {
|
|
FN_DESCRIPTION_MINIMAL = 0,
|
|
FN_DESCRIPTION_COMPLETE = 10
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _XFN_MISC_CODES_H */
|