PluginsSDK and C99

Tried to create a simple plugins for windows using VS 2010 and got error message about stdbool. So, I decided to define bool datatype by myself. I wonder, Is it ok to compile a plugin using a compiler with minimum C99 features?

Note: The plugin works, but it’s just a simple plugin.

C99 is fine of course.

I redefine a number of variable types so that I get better compatibility across platforms. So, whether I’m building a plugin for Xojo or a .so for A/IX, my code is consistent.

Thank you. C99 of course is not a problem on linux. We have few compilers that can be used. Still playing with CMake on windows, so I can coding on linux and compile only on windows.