For what it's worth, we are using the ARM port of syszlib in our commercial 
application, and I have not heard of any issues with it on the T.

I don't happen to be using the macros though, I am opening it "by hand"

  Err error;
  Boolean loaded = false;
  
  /* First try to find the library. */
  error = SysLibFind("Zlib", refNumP);
  
  /* If not found, load the library instead. */
  if (error == sysErrLibNotFound)
  {
    error = SysLibLoad('libr', 'ZLib', refNumP);
    loaded = true;
  }
  
  if (error == errNone)
  {
    error = ZLibOpen (*refNumP);
    if (error != errNone)
    {
      if (loaded)
      {
        SysLibRemove(*refNumP);
      }
      
      *refNumP = sysInvalidRefNum;
    }
 }
-- 
For information on using the Palm Developer Forums, or to unsubscribe, please 
see http://www.palmos.com/dev/support/forums/

Reply via email to