CDECLS/stdcall? welche call convention?
Ist keine Lib, sondern ein Framework, das direkt gekinkt wird.
Ich glaube ich bin auch auf dem Holzweg.
Der Type
EKEventStoreRequestAccessCompletionHandler ist offensichtlich bereits deklariert.
http://developer.apple.com/library/ios/#documentation/EventKit/Reference/EKEventStoreClassRef/Reference/Reference.html%23//apple_ref/occ/instm/EKEventStore/requestAccessToEntityType:completion:
So sieht das Aufruf unter Obj-C aus ...
Code:
[eventStore requestAccessToEntityType:EKEntityTypeEvent completion:^(BOOL granted,NSError* error){
//
Access not granted-------------
if(!granted){
}
//
Access granted------------------
}else{
}
}];