Hello, I'm sorry for all the messages, it has been a real chore trying to move from codewarrior. I wish that copying error text out of Xcode's window didn't screw up my Mail message windows. There is some kind of screwy formatting that copies with the text and makes Mail act weird.
But here is my new question, and thanks so much to everyone who has assisted with the others! It's trying to compile Apple's HID Support code, which is C, and I'm getting compile errors. I hesitate to change these to .cpp, and I don't think that would help anyway. At the bottom of this message are a couple of the errors I am getting. Do they look familiar?
It's the file HID_Utilities.h. Does anyone use that? Perhaps I need to add some new include to my prefix?
Here's what I have now: // MWPrefix.h // prefix file for our Mac projects
#ifndef __Prefix_File__ #define __Prefix_File__
#define TARGET_API_MAC_OSX 1 #include <stdio.h> #include <CoreServices/CoreServices.h> #include <Carbon/Carbon.h>
// for wml stuff #define __MACOS__ 1
#endif // __Prefix_File__
The Errors I am getting:
error: '__CFDictionary' undeclared (first use in this function) error: '__CFBoolean' undeclared (first use in this function) error: invalid storage class for function 'HIDGetElementsCFArrayHandler'
|