microsoft/WinObjC

Unknown type CFFileDescriptorRef

Opened this issue · 2 comments

In one of my header files I have this:

#import <Foundation/Foundation.h>

struct Foo {
	CFFileDescriptorRef fileDescriptor;
};

I get this error message:

error : unknown type name 'CFFileDescriptorRef

So this is an interesting one. We can add a stub for CFFileDescriptorRef to get your code building, but we'll have to spec out the work required to make CFFileDescriptorRef work if your application depends on it.

I could comment out the code using this, so this is not at all urgent for me, but a stub would definitely help.