I need to be pointed in the right direction. My app currently supports a single memory card, but I want to add support for the T5's "second" memory card -- the removable one. (At the moment, my app only sees the "internal" card.)


I'm currently finding a volume using

    UInt16 volRefNum;
    UInt32 volIterator = vfsIteratorStart;
    while (volIterator != vfsIteratorStop) {
         err = VFSVolumeEnumerate(&volRefNum, &volIterator);
         if (err == errNone)
              return volRefNum;

And then use VFSFileOpen which references the volume number.

Thanks,
Rich



-- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/

Reply via email to