on key 'c'
{
dword aep; // Application Endpoint handle
dword csi; // consumed Service Instance handle
dword ceg; // consumed Eventgroup handle
// open an Application Endpoint
aep = AREthOpenLocalApplicationEndpoint(17, 50002);
// create Service Instance
csi = AREthCreateConsumedServiceInstance(aep,10,1);
// create Eventgroup
ceg = AREthAddConsumedEventGroup(csi,1);
// ... do something here
// release the consumed Service Instance
AREthRemoveConsumedEventGroup(ceg);
// ... Application Endpoint and provided Service Instance can still be used here
}