At 06:04 PM 10/20/2005, you wrote:
Have you tried clicking on the icon to the left of the red check mark above the file structure for your code (looks like white piece of paper with a couple of marks on it with a yellow and black barber pole to the left). Go to Language Settings, then to C/C+= Language, and make certain that the last box on the column to the right, "require function prototypes", is NOT checked.
That's very dangerous -- you should always compile with function prototypes, otherwise you can easily call a function with the wrong set of parameters. If you get a compilation error, you should fix your code -- include the proper header that declares the function before it's used, or add your own prototype if none exists.
-- Ben Combee, Senior Software Engineer, Palm, Inc. "Combee on Palm OS" weblog: http://palmos.combee.net/ Developer Forum Archives: http://news.palmos.com/read/all_forums/ -- For information on using the PalmSource Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
