In article <87038@palm-dev-forum>, [EMAIL PROTECTED] says... > > I've found that the trick to port these applications is to build your app > in 4-byte int mode (instead of the default 2-byte int mode). I had to make > another encryption library work, that's the trick I used, no code changes > required.
I wouldn't use 4-byte int code too often, however. It interferes with the parsing of arguments to varargs calls like StrPrintF. It I was porting code, I'd just turn it on using #pragmas on a file-by-file basis and declare prototypes into this library code using Int16/Int32 to be precise. -- Ben Combee <[EMAIL PROTECTED]> CodeWarrior for Palm OS technical lead Get help at http://palmoswerks.com/ -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
