> > Any ideas on what 10761 is, or better yet, how to find out on your > > own? :) > Convert the value to hex, find the error class in ErrorBase.h, and > then look up the actual error code in the corresponding header file. > > E.g. 10761 = 0x2A09. I know that 0x2A00 is from the VFS error class, > but otherwise you can find that info in ErrorBase.h. A quick look in > VFSMgr.h reveals that (0x2A00 | 9) = vfsErrVolumeBadRef.
Or, if you're not used to thinking in hex, download ErrorCodes from http://prc-tools.sourceforge.net/misc/errorcodes.prc and type in "10761" to get the output: "10761 is vfsErrVolumeBadRef, defined in VFSMgr.h" (Or go to http://prc-tools.sourceforge.net/errorcodes.html and put "10761" into the text field, and click "look up" to get: "10761 is vfsErrVolumeBadRef, defined in VFSMgr.h with the comment the volume refnum is invalid." ) Later, Blake.
