Hey guys,
This is my first plug-in, and I'm running into this problem where visual studio 2013 is complaining about an inactive preprocessing block that is trying to call <Carbon/Carbon.h>. Aside from having trouble with some of the additional include files not being found (which I crudely got around), this seems to be its only complaint. I can't find a carbon.h anywhere. But more importantly, carbon.h shouldn't be getting called in the first place, as far as I can tell. The error is:
error RC2188: ...\pluginsdk\\photoshopapi\\photoshop\\PIActions.h(54) : fatal error RC1015: cannot open include file 'Carbon/Carbon.h'. ...\pluginsdk\samplecode\automation\isiauto\\photoshopapi\\photoshop\\pica_sp\\SPConfig.h
in PIActions.h, the chunk of code it seems to not like is:
#ifdef Rezinactive
#if !MSWindows && !qiOS
#include <Carbon/Carbon.r>
#endif
#else
#if !MSWindows && !qiOS
#include <Carbon/Carbon.h>
#endif
Has anyone run into something similar?
Thanks!