dtcm: Always use ANSI function prototypes

This commit is contained in:
Peter Howkins
2020-11-29 01:55:09 +00:00
parent c62a5049ed
commit d98b2c4c34
60 changed files with 890 additions and 953 deletions

View File

@@ -44,36 +44,35 @@
#ifndef _CMSATTR_H
#define _CMSATTR_H
#include "ansi_c.h"
#include "cm.h"
#include "cmscalendar.h"
extern CSA_return_code _DtCmsUpdateSint32AttrVal P((
extern CSA_return_code _DtCmsUpdateSint32AttrVal(
cms_attribute_value *newval,
cms_attribute_value **attrval));
cms_attribute_value **attrval);
extern CSA_return_code _DtCmsUpdateUint32AttrVal P((
extern CSA_return_code _DtCmsUpdateUint32AttrVal(
cms_attribute_value *newval,
cms_attribute_value **attrval));
cms_attribute_value **attrval);
extern CSA_return_code _DtCmsUpdateStringAttrVal P((
extern CSA_return_code _DtCmsUpdateStringAttrVal(
cms_attribute_value *newval,
cms_attribute_value **attrval));
cms_attribute_value **attrval);
extern CSA_return_code _DtCmsUpdateAccessListAttrVal P((
extern CSA_return_code _DtCmsUpdateAccessListAttrVal(
cms_attribute_value *newval,
cms_attribute_value **attrval));
cms_attribute_value **attrval);
extern CSA_return_code _DtCmsUpdateReminderAttrVal P((
extern CSA_return_code _DtCmsUpdateReminderAttrVal(
cms_attribute_value *newval,
cms_attribute_value **attrval));
cms_attribute_value **attrval);
extern CSA_return_code _DtCmsUpdateDateTimeListAttrVal P((
extern CSA_return_code _DtCmsUpdateDateTimeListAttrVal(
cms_attribute_value *newval,
cms_attribute_value **attrval));
cms_attribute_value **attrval);
extern CSA_return_code _DtCmsUpdateOpaqueDataAttrVal P((
extern CSA_return_code _DtCmsUpdateOpaqueDataAttrVal(
cms_attribute_value *newval,
cms_attribute_value **attrval));
cms_attribute_value **attrval);
#endif