On Mar 15, 2010, at 2:00 PM, Jim mack wrote: > I've been working with the ODBC code with this change for a few months now: > > TYPEDEF: short* SQLSMALLINT* > > but am not knowledgeable enough why it would be wrong. It was early in my > Factor learning process, and I can't swear I tested every data type.
Pointer C types don't exist separately from the pointed-to type anymore, so it doesn't make sense to TYPEDEF: something like SQLSMALLINT* anymore. You can get the same effect by removing the pointers: TYPEDEF: short SQLSMALLINT SQLSMALLINT* will then automatically be equivalent to short* . -Joe ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Factor-talk mailing list Factor-talk@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/factor-talk