17 lines
631 B
C
17 lines
631 B
C
/* Copyright (C) Boris Nikolaus, Germany, 1996-1997. All rights reserved. */
|
|
/* Copyright (C) Microsoft Corporation, 1997-1998. All rights reserved. */
|
|
|
|
#ifndef _ASN1C_OPT_CASE_H_
|
|
#define _ASN1C_OPT_CASE_H_
|
|
|
|
int PerOptCase_IsSignedInteger(PERSimpleTypeInfo_t *sinfo);
|
|
int PerOptCase_IsUnsignedInteger(PERSimpleTypeInfo_t *sinfo);
|
|
int PerOptCase_IsSignedShort(PERSimpleTypeInfo_t *sinfo);
|
|
int PerOptCase_IsUnsignedShort(PERSimpleTypeInfo_t *sinfo);
|
|
int PerOptCase_IsBoolean(PERSimpleTypeInfo_t *sinfo);
|
|
int PerOptCase_IsTargetSeqOf(PERTypeInfo_t *info);
|
|
|
|
int BerOptCase_IsBoolean(BERTypeInfo_t *info);
|
|
|
|
#endif // _ASN1C_OPT_CASE_H_
|