Convert epicsShareAPI to epicsStdCall in modules/ca

This commit is contained in:
Andrew Johnson
2020-03-10 23:42:42 -05:00
parent 017d561b8d
commit 33c3b1c89a
13 changed files with 187 additions and 187 deletions

View File

@@ -735,12 +735,12 @@ void ca_client_context::installDefaultService ( cacService & service )
ca_client_context::pDefaultService = & service;
}
void epicsShareAPI caInstallDefaultService ( cacService & service )
void epicsStdCall caInstallDefaultService ( cacService & service )
{
ca_client_context::installDefaultService ( service );
}
LIBCA_API int epicsShareAPI ca_clear_subscription ( evid pMon )
LIBCA_API int epicsStdCall ca_clear_subscription ( evid pMon )
{
oldChannelNotify & chan = pMon->channel ();
ca_client_context & cac = chan.getClientCtx ();