Why are there compiler errors when using RegisterFnFactory macros?
OOPSMP uses variadic macros, i.e., macros with a variable number of arguments, to register class functions for plug-and-play functionality. Variadic macros are part of the C99 standard, but some older compilers might not support variadic macros. In fact, Microsoft Visual Studio prior to v.8 did not support variadic macros.
Related Questions
- When I generate my business objects, I get a lot of compiler errors about "cannot convert from System.Data.SqlDbType to System.Data.DbType." What is wrong?
- I get compiler errors when trying to compile the provided code without changing anything. What is wrong?
- How can I generate a list of the compiler predefined macros?