mirror of
https://github.com/darlinghq/darling-Heimdal.git
synced 2024-11-27 14:10:25 +00:00
26 lines
503 B
C
26 lines
503 B
C
//
|
|
// Heimdal
|
|
//
|
|
//
|
|
|
|
#ifndef krb5_stat_h
|
|
#define krb5_stat_h
|
|
|
|
#ifdef __OBJC__
|
|
#include <Foundation/Foundation.h>
|
|
#define KRB5_STAT_CONST(c) extern NSString * c
|
|
#else
|
|
#include <CoreFoundation/CoreFoundation.h>
|
|
#define KRB5_STAT_CONST(c) extern CFStringRef c
|
|
#endif
|
|
|
|
|
|
KRB5_STAT_CONST(kHeimStatisticCommand);
|
|
KRB5_STAT_CONST(kHeimStatisticValue);
|
|
KRB5_STAT_CONST(kHeimStatisticExtraValue);
|
|
|
|
KRB5_STAT_CONST(kHeimStatisticCommandAdd);
|
|
KRB5_STAT_CONST(kHeimStatisticCommandSet);
|
|
|
|
#endif /* krb5_stat_h */
|