I have a class called RSTimer that has two methods called CreateTimer and KillTimer which uses the same dictionary object. I could not able to declare the variable inside the interface as well as inside the implementation. Its pointing out in the declaration and says that it is not a constant.
-(BOOL)KillTimer:(unsigned short)wTimerId
{
stRs232Timer* pEvent;
BOOL bReturn=FALSE;
CFDictionaryValueCallBacks cbs = {0,NULL,NULL,NULL,NULL};
CFMutableDictionaryRef cfdict = CFDictionaryCreateMutableNULL,0,&kCFTypeDictionaryKeyCallBacks,&cbs);
NSLock* theLock = [[NSLock alloc]init];
if ([theLock tryLock]) {
if (CFDictionaryContainsKey(cfdict,&wTimerId)) {
free(pEvent);
bReturn = TRUE;
}
[theLock unlock];
}
return bReturn;
}
-(BOOL)CreateTimer:(RS232TimerInterface*)pStack withTimerId:(unsigned short)wTimerId withPeriod:(uint8_t)uPeriod withPersistentState:(BOOL)bPersistent
{
CFDictionaryValueCallBacks cbs = {0,NULL,NULL,NULL,NULL};
CFMutableDictionaryRef cfdict = CFDictionaryCreateMutable(NULL,0,&kCFTypeDictionaryKeyCallBacks,&cbs);
CFNumberRef timerId = CFNumberCreate(NULL,kCFNumberShortType,&wTimerId);
[self KillTimer:wTimerId];
NSLock* theLock = [[NSLock alloc]init];
if ([theLock tryLock]) {
CFDictionarySetValue(cfdict,&timerId,pEvent);
[theLock unlock];
}
}
I tried declaring it in 'init' method also. How can i make
CFDictionaryValueCallBacks cbs = {0,NULL,NULL,NULL,NULL};
CFMutableDictionaryRef cfdict = CFDictionaryCreateMutable(NULL,0,&kCFTypeDictionaryKeyCallBacks,&cbs);
common to both the methods..